js内置对象
Posted yymxp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js内置对象相关的知识,希望对你有一定的参考价值。
Date(时间对象)
定义方式:var date = new Date()
console.log(date.getTime()); 返回距离1970/1/1 毫秒值
console.log(date.getFullYear()); 返回4为数的年份
console.log(date.getMonth()); 返回月份,从0开始
console.log(date.getDate()); 返回当月的第几天
console.log(date.getHours()); 返回小时0-23
console.log(date.getMinutes()); 返回分钟0-59
console.log(date.getSeconds()); 返回秒0-59
console.log(data.getMilliseconds()); 返回毫秒(1s=1000ms)
以上是关于js内置对象的主要内容,如果未能解决你的问题,请参考以下文章