gpt4 book ai didi

html - 自动点击一个html按钮

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

我可以做这个按钮吗<div class="nav next"><button><i class="icon-chevron-right"></i></button></div>每 30 秒自动点击一次?

最佳答案

下面是如何使用 jQuery 每 30 秒在按钮上触发一次点击事件:

<div class="nav next">
<button><i class="icon-chevron-right"></i></button>
</div>

<script>
(function ($) {
$(document).ready(function () {

setInterval(function(){
$('.nav.next > button').click();
}, 30000)

});
})(jQuery);
</script>

关于html - 自动点击一个html按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18284251/

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