令人困惑的关于jquery定时器
iam使用jquery定时器http://jquery.offput.ca/timers/创建文档在每5秒和暂停和恢复控制按钮。这里是我的脚本:令人困惑的关于jquery定时器
$(function() { $('.handler').load("../Pages/csFetchCustomer.ashx?");
$('.controlled-interval').everyTime(5000, 'controlled', function() {
$('.handler').load("../Pages/csFetchCustomer.ashx?");
$('.stop').click(function() {
$('.controlled-interval').stopTime('controlled');
});
});
});
用这个脚本,我已经创建文件,加载每5秒暂停按钮controll ,. 但如何创建简历/播放按钮控件? 任何建议,欢迎 谢谢。
回答:
有在其网站上演示的工作是做你想要什么,但这里是我的简化代码:
$(document).ready(function() { var active = true,
runLoadEvery = function() {
$('.controlled-interval').everyTime(5000, 'controlled', function() {
$('.handler').load("../Pages/csFetchCustomer.ashx?");
});
};
// start running as soon as ready event is fired
runLoadEvery();
$('.start').click(function() {
active = true;
runLoadEvery();
});
$('.stop').click(function() {
active = false;
$('.controlled-interval').stopTime('controlled');
});
});
以上是 令人困惑的关于jquery定时器 的全部内容, 来源链接: utcz.com/qa/265164.html