javascript学习笔记之时间与日期
1、Date类型
js提供Date类型来处理日期和时间
<script type="text/javascript"> var date = new Date(); document.writeln(date); //Thu Jan 08 2015 01:25:53 GMT+0800 (中国标准时间) document.writeln(Date.parse()); //NaN document.writeln(Date.parse(‘6/10/2014‘)); //1402329600000 毫秒数 document.writeln(Date.parse(‘Thu Jan 08 2015 01:25:53‘)); //1420651553000 毫秒数 document.writeln(Date.UTC()); //NaN //日期格式化方法 document.writeln(‘<br/>‘); document.writeln(date.toDateString()); //Thu Jan 08 2015 document.writeln(‘<br/>‘) document.writeln(date.toTimeString()); //01:39:08 GMT+0800 (中国标准时间) document.writeln(‘<br/>‘) document.writeln(date.toLocaleDateString()); //2015年1月8日 document.writeln(‘<br/>‘) document.writeln(date.toLocaleTimeString()); //上午1:39:08 document.writeln(‘<br/>‘) document.writeln(date.toUTCString()); //Wed, 07 Jan 2015 17:39:08 GMT //一些set,get方法 </script>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。