jQueryTimers是一个用来封装setTimeout和setInterval方法的jQuery定时器插件。
示例:
$("#close-button").click(function(){ $(this).oneTime(1000,function(){ $(this).parent(".main-window").hide(); });});$("#cancel-button").click(function(){ $("#close-button").stopTime();});jQueryTimers是一个用来封装setTimeout和setInterval方法的jQuery定时器插件。
示例:
$("#close-button").click(function(){ $(this).oneTime(1000,function(){ $(this).parent(".main-window").hide(); });});$("#cancel-button").click(function(){ $("#close-button").stopTime();});
评论