PHP前端开发

js如何显示当前时间

百变鹏仔 2个月前 (10-13) #JavaScript
文章标签 时间
可以显示当前时间,并将此时间定期更新,从而实现实时时钟功能。具体示例如下:获取要显示时间的 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(() =&gt; {  // 获取当前时间并格式化  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 秒)运行一次