Moment.js不显示结果

Moment.js not displaying results

本文关键字:结果 显示 js Moment      更新时间:2023-09-26

我在使用moment.js显示转换为12小时格式的24小时时间字符串时遇到问题,仍在寻找解决方案

html代码

<div id="showtime"></div>

Javascript

<script>
(function()
{
  // instantiate a moment object
  var convert24hr = moment("15:30", "HH:mm").format("hh:mm A");
  // display value of moment object in #displayMoment div
  var eDisplayMoment = document.getElementById('showtime');
  eDisplayMoment.innerHTML = convert24hr;
})();
</script>

更新忘记在样式中添加CSS

#showtime {
    font-size:30px;
}

问题是我忘记在下面的样式表更新代码中添加CSS

#showtime {
    font-size:30px;
}