我有问题显示24小时时间字符串转换为12小时格式使用moment.js仍在寻找解决方案
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;
}
答案 0 :(得分:0)
问题是我忘了将CSS添加到下面的样式表更新代码
#showtime {
font-size:30px;
}