var button = document.getElementById("需要点击的标签ID"); //每秒执行一次,若按钮状态为可用,进行点击 setInterval(function() { button.click(); }, 3000); //每3秒点一次" .