toLocaleString() 方法可根据本地时间把 Date 对象转换为字符串,并返回结果。
dateObject.toLocaleString()
dateObject 的字符串表示,以本地时间区表示,并根据本地规则格式化。
在本例中,我们将根据本地时间把今天的日期转换为字符串:
<script type="text/javascript"> var d = new Date() document.write(d.toLocaleString()) </script>
输出:
在本例中,我们将根据本地时间把具体的日期转换为字符串:
<script type="text/javascript"> var born = new Date("July 21, 1983 01:15:00") document.write(born.toLocaleString()) </script>
输出:
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛
Powered by 365建站网 RSS地图 HTML地图
copyright © 2013-2024 版权所有 鄂ICP备17013400号