可以显示当前时间,并将此时间定期更新,从而实现实时时钟功能。具体示例如下:获取要显示时间的 dom 元素。创建一个 javascript date 对象以获取当前时间。格式化时间以使其易于阅读。将格式化的时间更新到 dom 元素中。使用 setinterval() 函数定期更新时间,以实现实时时钟。
如何使用 JavaScript 显示当前时间
打开 DOM 元素
// 获取要显示时间的 DOM 元素 const timeElement = document.getElementById("time");
创建 Date 对象
// 创建一个 JavaScript Date 对象以获取当前时间 const currentDate = new Date();
格式化时间
// 格式化时间以使其易于阅读 let hours = currentDate.getHours(); // 获取小时 let minutes = currentDate.getMinutes(); // 获取分钟 let seconds = currentDate.getSeconds(); // 获取秒 // 添加前导零以确保两位数 if (hours <h3>显示时间</h3><pre class="brush:php;toolbar:false">// 将格式化的字符串更新到 DOM 元素中 timeElement.textContent = formattedTime;
定期更新时间
为了显示实时时钟,需要定期更新 DOM 元素中的时间。可以使用 setInterval() 函数:
// 每秒更新一次时间 setInterval(() => { // 获取当前时间并格式化 const currentDate = new Date(); let hours = currentDate.getHours(); let minutes = currentDate.getMinutes(); let seconds = currentDate.getSeconds(); let formattedTime = `${hours}:${minutes}:${seconds}`; // 更新 DOM 元素 timeElement.textContent = formattedTime; }, 1000); // 每隔 1000 毫秒(1 秒)运行一次
以上就是js如何显示当前时间的详细内容,更多请关注php中文网其它相关文章!
版权声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系 yyfuon@163.com