6

我正在寻找一种 .preventDefault() 进行转换然后允许默认行为的方法

$('.withTrans').click(function(e){
    e.preventDeault();
    $(this).animate('opacity','0',300,function(){
           e.resumeDefault();      // does something like this exist?
    });

})
4

3 回答 3

6
$('.withTrans').click(function(event) {
    if ( $(this).data("prevented") === true ) {
        $(this).data("prevented", false);
        return;
    }
    event.preventDefault();
    $(this).animate('opacity', '0', 300, function() {
           $(this).data("prevented", true).trigger("click");
    });
});
于 2012-03-04T15:33:11.463 回答
1

假设您在动画完成后尝试点击链接:

$('.withTrans').click(function(e){
    $(this).animate('opacity','0',300,function(){
          window.location= this.href;
    });
    return false;
});
于 2012-03-04T15:34:30.627 回答
0
$('.withTrans').each(function(e){
    $(this).unbind();
}
于 2014-11-06T04:41:14.180 回答