日期总是一个棘手的问题(至少对我来说是这样),我面临的事实是Javascript似乎没有格式化日期的方法。
我正在尝试使用Google API设置日期格式,该API要求您提供以下格式的日期:yyyy'-'MM'-'dd'HH':'m':'ss.fffff(例如2011-06-25T10:00:00.000+02:00)
我需要能够阅读这种字符串并产生一个字符串。
我经常使用jQuery插件:http://plugins.jquery.com/project/jquery-dateFormat
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="https://raw.github.com/phstc/jquery-dateFormat/master/jquery.dateFormat-1.0.js"></script>
<script type="text/javascript">
$(function() {
var d = new Date();
alert($.format.date(d, 'yyyy-MM-ddTHH:mm:ss'));
})
</script>