获取系统时间

new Date()

打印系统时间

console.log(new Date())  //Mon Nov 21 2022 17:21:53 GMT+0800 (中国标准时间)

系统时间转换格式

console.log(new Date().toLocaleString())  //2022/11/21 17:21:53

获取系统当前是星期几

console.log(new Date().getDay())  //1

转换成大写的星期(日一二三四五六)

console.log('星期', '日一二三四五六'.charAt(new Date().getDay()))    //星期一

完整显示年月日时分秒星期几

this.time = new Date().toLocaleString() + ' 星期' + '日一二三四五六'.charAt(new Date().getDay());

console.log(this.time)    //2022/11/21 17:29:39 星期一

posted on 2022-11-21 17:34  好大的虫子  阅读(76)  评论(0编辑  收藏  举报