var date = new Date(); document.writeln(date); //Thu Jan 08 2015 01:25:53 GMT+0800 (中国标准时间) document.writeln(Date.parse()); //NaN document.writeln(Da">
 | 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
10年前发布

JavaScript处理时间与日期

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>