var date = new Date()
1、常用获取对应时间段对象的几种方法
// 所有浏览器和设备都兼容
new Date(year, month, day, Hours, minutes, seconds)
// 下面两个方式可能有些设备不一样
// 使用 / 分割年月日
new Date("year/month/day hours:minutes:seconds")
// 使用 - 分割年月日
new Date("year-month-day hours:minutes:seconds")
2、获取本地日期字符串
new Date().toLocaleString()
// 返回 '2022/8/2 14:31:17'
3、获取日期方法
// 年
new Date().getFullYear()
// 月 - 返回 0(1月) - 11(12月)
new Date().getMonth()
// 日
new Date().getDate()
// 时
new Date().getHours()
// 分
new Date().getMinutes()
// 秒
new Date().getSeconds()
// 星期几 - 返回 0-6,0(周日) - 6(周六)
new Date().getDay()
// 获取时间戳
new Date().getTime()
4、设置时间
// 年
new Date().setFullYear( year )
// 月 - month = 0(1月) - 11(12月)
new Date().setMonth( month )
// 日
new Date().setDate( day )
// 时
new Date().setHours( hours )
// 分
new Date().setMinutes( minutes )
// 秒
new Date().setSeconds( seconds )