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>

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/10008.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论