gpt4 book ai didi

javascript - 如何在 DIVI WordPress 中添加实时时钟

转载 作者:行者123 更新时间:2023-12-03 06:55:00 24 4
gpt4 key购买 nike

我很好奇,我们可以做些什么来在 DIVI WordPress 上添加实时时钟吗?我尝试使用 javascript,但我可以在 wordpress 上添加实时时钟。

enter image description here

最佳答案

使用Date对象和 setInterval 每秒显示新时间。

setInterval(function () {
var time = new Date();

var placeholder = document.getElementById('time');

placeholder.innerHTML = time.getHours()+':'+time.getMinutes()+':'+time.getSeconds();
}, 1000);
<div id="time"></div>

关于javascript - 如何在 DIVI WordPress 中添加实时时钟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37318187/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com