我将一些点击事件绑定到我拥有的一些图像。当其中一个被点击时,我想禁用所有图像,然后在两秒钟后添加回相同的点击事件。
到目前为止,我有以下内容:
$('#pagination img').each(function(index){
$( this ).bind ("click",function(){
pageClick = true;
pagendex = index*9;
clearInterval(progresstracker);
$("#progressbar").progressbar( "option", "value", 0);
numSecondsPassed=0;
$('#pagination img').each(function(index){
$(this).unbind('click');
});
// alert("Page Index" + pageIndex);
rotateImage();
}).mouseover(function(){
$(this).css("cursor","pointer");
});
});
我正在取消绑定它们并且有效。但是我需要在两秒钟后将它们绑定回具有相同变量的单击事件并再次取消绑定。基本上当他们单击取消绑定 2 秒钟然后绑定回冲洗重复。