我有以下代码,每秒应添加 2.6 。但第一次添加后我得到 8。我该如何解决这个问题?在此处的测试器上它可以工作,但在我的页面上我得到 8 https://260044-5.web1.fh-htwchur.ch/
提前致谢。
setTimeout(start, 0000);
var i = 2.6;
var num = document.getElementById('humans');
function start() {
setInterval(increase, 1000);
}
function increase() {
if (i < 100000000) {
i += 2.6;
num.innerText = Math.round(i);
}
}
<div id="humans">2.6</div>
<p>Menschen wurden geboren.</p>
米琪卡哇伊
ITMISS
白板的微信
相关分类