js实现页面当天时间的代码
时间: 2024-09-30 15:07:30 浏览: 21
javascript实现的网站访问量统计代码
5星 · 资源好评率100%
在JavaScript中,获取当前日期和时间通常可以使用`Date`对象。以下是一个简单的例子,它会显示当前的完整日期和时间:
```javascript
// 创建一个新的Date对象,代表当前时间
var now = new Date();
// 获取当前年、月、日、小时、分钟、秒和毫秒
var year = now.getFullYear(); // 年份
var month = now.getMonth() + 1; // 月份(注意getMonth()返回的是0开始计数,所以加1)
var day = now.getDate();
var hours = now.getHours(); // 小时
var minutes = now.getMinutes();
var seconds = now.getSeconds();
var milliseconds = now.getMilliseconds();
// 格式化日期和时间字符串
var formattedTime = `${year}-${month < 10 ? '0' : ''}${month}-${day} ${hours < 10 ? '0' : ''}${hours}:${minutes < 10 ? '0' : ''}${minutes}:${seconds < 10 ? '0' : ''}${seconds}`;
// 输出到页面上
document.getElementById('current-time').innerText = formattedTime;
```
这段代码假设你有一个HTML元素id为`current-time`,用来显示当前的时间。
阅读全文