gpt4 book ai didi

JavaScript 倒计时时钟

转载 作者:行者123 更新时间:2023-11-30 07:06:06 25 4
gpt4 key购买 nike

我正在尝试在 js 中为某一天写一个倒计时时钟。我有以下内容,如果我将它输出到页面但我似乎无法使用 innerhtml 将它写入 div?

谁能看出我哪里出错了?

today = new Date();
expo = new Date("February 05, 2012");
msPerDay = 24 * 60 * 60 * 1000 ;
timeLeft = (expo.getTime() - today.getTime());
e_daysLeft = timeLeft / msPerDay;
daysLeft = Math.floor(e_daysLeft);
document.getElementById('cdown').innerHTML = document.write(daysLeft);

最佳答案

document.getElementById('cdown').innerHTML = daysLeft

你不需要 document.write

关于JavaScript 倒计时时钟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7443365/

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