js获取时间
Posted 前端渣女
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取时间相关的知识,希望对你有一定的参考价值。
一:获取时间戳:
var time = new Date();
方法1,time.valueof();
方法2,time.getTime();
方法3,+new Date();
方法4,Date.now();
二:获取各个时间的方法
1,获取星期:getDay(),取值范围[0,6]
2,获取月:getMonth() ,取值范围[0,11]
3,获取日:getDate(),取值范围[1,31]
4,获取年:getFullYear()
5,获取时:getHours()
6,获取分:getMinutes()
7,获取秒:getSeconds()
8,获取毫秒:getMilliseconds()
三:自己定义时间
方法1,new Date(‘2017/11/2 21:31:01‘)
方法2,new Date(2017,11,2,21,31,1)
以上是关于js获取时间的主要内容,如果未能解决你的问题,请参考以下文章