JavaScript Date
程序员文章站
2022-05-04 13:25:26
var date = new Date(); //Sat Sep 29 2018 10:44:43 GMT+0800 (中国标准时间) ]new Date().toLocaleString(); // 可根据本地时间把 Date 对象转换为字符串,并返回结果。 "2018/9/29 上午10:45: ......
var date = new date(); //sat sep 29 2018 10:44:43 gmt+0800 (中国标准时间)
]new date().tolocalestring(); // 可根据本地时间把 date 对象转换为字符串,并返回结果。
"2018/9/29 上午10:45:15"
date.getfullyear(); //获取完整的年份(1970)
date.getmonth(); //获取月份(0-11,0代表1月,用的时候记得加上1)
date.getdate(); // 获取日(1-31)
date.gettime(); // 获取时间(从1970.1.1开始的毫秒数)
date.gethours(); // 获取小时数(0-23)
date.getminutes(); // 获取分钟数(0-59)
date.getseconds(); // 获取秒数(0-59)
上一篇: day01.1
推荐阅读