如何在页面加载后5秒内完成此操作与使用复选框相同?我们不再需要复选框功能,只需要滑块就可以启动它的'页面打开时拥有。
你认为这可能吗?谢谢!
jQuery(document).ready(function ($) {
$('#checkbox').change(function(){
setInterval(function () {
moveRight();
}, 3000);
});
答案 0 :(得分:0)
jQuery(document).ready(function ($) {
setInterval(function () {
moveRight();
}, 3000);
});
如果您希望它只运行一次,请使用setTimeout: https://developer.mozilla.org/en/docs/Web/API/window.setTimeout
如果要重复运行,请使用setInterval https://developer.mozilla.org/en/docs/Web/API/window.setInterval