Date 对象提供的 toLocaleString 方法可以方便的将日期和时间转化为本地格式:
<script type="text/javascript"> var d = new Date(); document.write("现在是:" + d.toLocaleString() ); </script>
运行该例子,输出:
现在是:2012年3月4日 22:15:14
0