var nowT = new Date()
日期格式化方法
nowT.toDateString() // 星期几 月 日 年 Wed Apr 10 2019
nowT.toTimeString()// 时:分:秒 时区 22:38:05 GMT+0800 (中国标准时间)
nowT.toLocaleDateString() // 地区的格式 显示 星期几 月 日 年 2019/4/10
nowT.toLocaleTimeString() // 地区的格式 显示 时 分 秒 下午10:38:05
nowT.toUTCString() // 完整的UTC日期 Wed, 10 Apr 2019 14:38:05 GMT
组件方法:单独获取你想要的各种时间/日期而提供的方法。
nowT.getTime() // 返回毫秒时间
nowT.getFullYear() // 返回四位数的年份
nowT.getMonth() // 返回日期的月份 切记 0 表示 一月 ; 11 表示 十二月
nowT.getDate() // 返回日期月份的天数 (1-31)
nowT.getDay() // 返回日期的周几 切记 0 表示 星期日 ; 6表示兴起六
nowT.getHours() // 返回日期中的小时数 0-23
nowT.getMinutes() // 返回日期中的分钟数 0-59
nowT.getSeconds() // 返回日期中的秒数 0-59
nowT.getMilliseconds() // 返回日期中的毫秒数
nowT.setTime() // 设置毫秒时间
nowT.setFullYear() // 设置日期的年份,必须是4位数
nowT.setMonth() // 设置日期的月份, 传入的月份值必须大于0,超过11则增加年份
nowT.setDate() // 设置日期月份中的天数,如果传入的值超过了该月中的天数,则增加月份
nowT.setDay() // 没有这个方法
nowT.setHours() // 设置日期中的小时数,传入的数值超过23则增加月份中的天数
nowT.setMinutes() // 设置日期中的分钟数,传入的值超过59则增加小时数
nowT.setSeconds() // 设置日期中的秒数,传入的值超过59则增加分钟数
nowT.setMilliseconds() // 返回日期中的毫秒数
网友评论