码迷,mamicode.com
首页 > 编程语言 > 详细

javascript学习笔记之时间与日期

时间:2015-01-08 07:16:49      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

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>


javascript学习笔记之时间与日期

标签:

原文地址:http://my.oschina.net/Cheney521/blog/364914

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!