gpt4 book ai didi

javascript - 向 JS 倒计时添加文本

转载 作者:行者123 更新时间:2023-11-28 20:19:15 24 4
gpt4 key购买 nike

我使用下面的代码在 10 秒倒计时后隐藏 DIV。它工作得很好,但目前它只显示 10,9,8 等。我应该修改什么才能添加像这样的纯文本“此框将在(10,9,8,等)秒内关闭”非常感谢

http://jsfiddle.net/QhLcR/

<div id="news-container" style="border:5px solid black;width:100%; background: red;">dfdf

<div id="countdown" style="border:1px solid black;width:120px;float: right;">test</div></div>


var time = 10;

window.setInterval(test, 1000);

function test()
{
time -=1;
$('#countdown').html(time);

if(time == 0)
{

$('#news-container').remove();
}
}

最佳答案

像这样吗? http://jsfiddle.net/QhLcR/1/

var time = 10;

window.setInterval(test, 1000);

function test() {
time -= 1;
$('#countdown').html('This box will be closed in ' + time + ' seconds');

if (time == 0) {

$('#news-container').remove();
}
}

关于javascript - 向 JS 倒计时添加文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18655375/

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