我正在尝试使用以下Jquery代码
来自动化滑块while(true){
setTimeout(function(){
$('.bx-next').click();
}, 3000);
}
但这会导致浏览器崩溃.. 有更好的方法???
答案 0 :(得分:3)
如果您想要每3000毫秒无限循环,请使用setInterval
而不是setTimeout
并删除while(true)
:
setInterval(function() {
$('.bx-next').click();
}, 3000);