gpt4 book ai didi

javascript - For 循环对于 click() 方法无法正常工作

转载 作者:行者123 更新时间:2023-12-01 01:07:24 27 4
gpt4 key购买 nike

我需要模拟网站上的多个按钮点击,并想使用 for 循环来完成它,但它没有按预期工作(它只点击一次)。

for (i=0; i<10; i++) {
document.getElementById("increase_your_bet_button").click();
}

更新:我尝试了所有建议的解决方案,但没有任何效果,并且只运行一次。玩了setTimeout,最终找到了一个合理的解决方案:

for (let i=0; i<10; i++) {
setTimeout(function() {
document.getElementById("increase_your_bet_button").click();
}, 1000*(i+1));
}

最佳答案

完美运行:

for (i = 0; i < 10; i++) {
document.getElementById("increase_your_bet_button").click();
}
.as-console-wrapper { max-height: 100% !important; top: auto; }
<button id="increase_your_bet_button" onclick="console.log('Click!')">Click!</button>

关于javascript - For 循环对于 click() 方法无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55505126/

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