js 获取当前时间 年月日时分秒 周几
时间: 2023-10-10 21:06:58 浏览: 173
js实现实时展示当前日期到时分秒以及周几
你可以使用 JavaScript 中的 Date 对象来获取当前时间。下是一个示例代码,可以获取当前时间年、月、日、时、分、秒以及星期几:
```javascript
// 创建当前时间的 Date 对象
var now = new Date();
// 获取年份
var year = now.getFullYear();
// 获取月份(注意月份从 0 开始,所以需要加 1)
var month = now.getMonth() + 1;
// 获取日期
var date = now.getDate();
// 获取小时
var hours = now.getHours();
// 获取分钟
var minutes = now.getMinutes();
// 获取秒钟
var seconds = now.getSeconds();
// 获取星期几(注意星期天为 0)
var dayOfWeek = now.getDay();
// 输出结果
console.log("当前时间:" + year + "年" + month + "月" + date + "日 " + hours + ":" + minutes + ":" + seconds);console.log("星期" + dayOfWeek);
```
希望这个代码能帮到你!
阅读全文