gpt4 book ai didi

javascript - x.classList.toggle() 无法正常工作

转载 作者:行者123 更新时间:2023-11-28 12:57:20 25 4
gpt4 key购买 nike

所以我有这个脚本,它是一个跟随无限动画的计数器。每次交互完成时,计数器都会重置为 0。在倒数第四行,当计数器达到 20 时,我试图调用 x.classList.toggle() 来更改 css。当我用 alert() 函数替换 classList.toggle 时,它​​起作用了,但没有类“doton”被添加到“dot1”。我错过了什么?

http://jsfiddle.net/8TVn5/

window.onload = function () {

var currentPercent = 0;

var showPercent = window.setInterval(function() {

$('#dot1').on('animationiteration webkitAnimationIteration oanimationiteration MSAnimationIteration', function (e) {
currentPercent= 0;});



if (currentPercent < 100) {
currentPercent += 1;
} else {
currentPercent = 0;
}

if (currentPercent == 20){document.getElementByID('dot1').classList.toggle('doton');}
document.getElementById('result').innerHTML = currentPercent;
}, 200);


};

最佳答案

我只是打错了:它应该是 getElementById

http://jsfiddle.net/8TVn5/1/

关于javascript - x.classList.toggle() 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22105306/

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