【发布时间】:2026-02-02 02:55:01
【问题描述】:
我想禁用点击功能,直到其中的每个代码;初始化并完成。
我阅读了这些文章并尝试了他们所说的但无法实现: event.preventDefault() vs. return false + Best way to remove an event handler in jQuery? + jQuery - Disable Click until all chained animations are complete
我为这个问题准备了简单的例子:
html
<div class="ele">1</div>
<div class="ele">2</div>
<div class="ele">3</div>
jQuery
$('.ele').click(function() {
if ( !$('.ele').is(':animated') ) {//this works too but;
//is:animate duration returns = 2000 but need to be 4000
$('.ele').stop().animate({'top':'0px'},2000);
$(this).stop().animate({'top':'100px'},4000);
}
return false;
});
【问题讨论】:
标签: javascript jquery animation click bind