我必须以这种格式在2000年1月12日12:30的jsp中显示日期。如何在JavaScript中或使用jQuery UI以上述格式格式化当前日期。
var currentDate = new Date();
currentDate.toString("hh:MM dS MMMM yyyy")
我已经尝试了上面的代码,但它无法正常工作。
答案 0 :(得分:0)
jquery日期格式是单独的插件。需要使用<script>
标记明确添加。
使用javascript格式化
<script>
$.format.date("2009-12-18 10:54:50.546", "dd/MM/yyyy");
</script>
如,
<script>
document.write($.format.date("2009-12-18 10:54:50.546", "Test: dd/MM/yyyy"));
document.write($.format.date("Wed Jan 13 10:43:41 CET 2010", "dd~MM~yyyy"));
</script>
请参阅here
答案 1 :(得分:0)
看起来很奇怪,Javascript没有内置函数或方法可以让你指定日期/时间格式。
但你可以使用这样的东西:https://github.com/samsonjs/strftime