Date对象
1.创建方式
var now = new Date(); //现在返回的直接就是 当前的时间 不需要进行换算了
返回格式
(星期 月 日 年 时 分 秒 时区)
2.日期的格式化方法
dateObject.toDateString(); 返回 星期 月 日 年
dateObject.toTimeString(); 返回 时 分 秒 时区
3.日期时间组建方法 dateObject.function();
getTime() | 返回从1970至今的毫秒数(valueOf()相同) | setTime() | 设置从1970至今的毫秒数 从而达到改变日期的效果 |
getFullYear() | 获取4位数年份 | setFullYear() | 设置年份,改变日期对象的毫秒数 |
getMonth() | 获取月份(从0开始,所以要加一 就是当前月份) | setMonth() | 设置月份(超出加年) |
getDate() | 获取几号 | setDate() | 设置几号(超出加月) |
getDay() | 获取星期 日-六 对应 0-6 | ||
getHours() | 获取小时 | setHours() | 设置小时(超24加天) |
getMinutes() | 获取分钟 | setMinutes() | 设置分钟 |
getSeconds() | 获取秒数 | setSeconds() | 设置秒数 |
getMilliseconds() | 获取毫秒数 | setMilliseconds() | 设置毫秒数 |
原文地址:https://www.cnblogs.com/96weibin/p/8488003.html
时间: 2024-10-13 08:18:41