当前位置: 软件>JavaScript软件
jQuery定时器插件 jQuery Timers
本文导语: jQuery Timers 是一个用来封装 setTimeout 和 setInterval 方法的 jQuery 定时器插件。 示例: $("#close-button").click(function() { $(this).oneTime(1000, function() { $(this).parent(".main-window").hide(); });});$("#cancel-button").click(function() { $("#close-button").s...
jQuery Timers 是一个用来封装 setTimeout 和 setInterval 方法的 jQuery 定时器插件。
示例:
$("#close-button").click(function() {
$(this).oneTime(1000, function() {
$(this).parent(".main-window").hide();
});
});
$("#cancel-button").click(function() {
$("#close-button").stopTime();
});