Date方法整理

2018-06-24 00:52:32来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

作用:处理时间和日期
一、创建方式
1.var mydate = new Date() —— 当前计算机时间
2.var mydate = new Date("2015-1-1") —— 创建时间
 
二、Date内置方法
var myDate = new Date();
 
console.log(myDate.getYear()); //获取1900到当前年的差:117
 
console.log(myDate.getFullYear()); //当前年:2017
 
console.log(myDate.getMonth()); //返回当前月份-1;8
 
console.log(myDate.getDay()); //当前周几:1
 
console.log(myDate.getDate()); //当前日:4
 
console.log(myDate.getHours()); //当前小时:13
 
console.log(myDate.getMinutes()); //当前分钟:56
 
console.log(myDate.getSeconds()); //当前秒:6
 
console.log(myDate.getTime()); //从1970年到现在经过多少毫秒:1504504566695
 
console.log(Date.parse("2015-1-1")); //返回 1970/1/1 午夜距离该日期时间的毫秒数:1420041600000
 
console.log(myDate.toLocaleDateString()); //返回当前时区的日期显示方式:2017-9-4
 
console.log(myDate.toLocaleTimeString()); //返回当前时区的时间显示方式:14:00:43
 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:js实现发送验证码倒计时效果

下一篇:Angular2快速入门-4.创建一个服务(创建NewsService提供数据)