我有一個刪除按鈕來刪除照片。第一次點擊動畫div
最上面的消息:「如果你真的想刪除這張照片再次點擊。」再次點擊刪除照片。如果您在第一次點擊後不再點擊3秒,消息將消失。但是如果它消失並且您再次點擊該按鈕,它仍然會被刪除。我需要停止腳本時消息即消失停止後$.ajax()
jQuery按鈕超時
$(".delete").toggle(function(){
$("#top").html("Click again if you really want delete this photo.");
$("#top").animate({top: "0"}).delay(3000).animate({top: "-50"});
return false;
}, function() {
$("#top").animate({top: "-50px"});
var id = $(this).attr("id");
$.ajax({
...
});
});