时间对象
new Data() GMT+0800 GTM标准时间+0800 时区
一个参数 毫秒数 1970开始加上毫秒数
两个参数 年 月 月从0开始
三个参数 年 月 日 时 分 秒
字符串 如("2020-10-10 10;20:33")或者2020/10/10 10;20:33
.getFullYear() 获取年
.getMonth() 获取月 月是0开始
.getDate() 获取日
.getDay() 0开始 1-6 获取周几
.getHours()获取时
.getMinutes()分
.getSeconds()秒
.getMilliseconds()毫秒
.getTime() 获取时间戳
set同上