码迷,mamicode.com
首页 > Web开发 > 详细

jquery中click事件重复绑定问题

时间:2016-03-24 18:03:54      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:

在最近的项目中遇到这样一个问题:

技术分享

 

 

技术分享

从心愿单中删除产品,1.如果直接确定删除,则删除成功,2.如果先取消删除,再次点击再确认删除,则会出现问题,测试发现:

对未来元素(类名为deleteFav的对象)绑定click事件中,如果function中还包含有元素(简称A)的click事件,在点击两次删除按钮时会出现A 元素的click事件重复绑定的情况

$("body").on("click",".deleteFav",function(){//点击删除button
  var id=$(this).attr("id");
  $(".alertBtns").append("<span class=‘cancel‘ style=‘margin-left:14px;‘>CANCEL</span>");
  $(".alertwindow .tips").html("Are you sure you want to remove this Photo from the favorites? ");
  $(".alertwindow").show();
  $(".alertBtns .conf").click(function(event){

    //alert("test");   //------第二次点击.deleteFav 会发现弹出两次test
    location.href=rootDomain +‘/wishlists/delete/‘+id;
  });

});

 

解决方法,先解绑,再绑定

$("body").on("click",".deleteFav",function(){//点击删除button
  var id=$(this).attr("id");
  $(".alertBtns").append("<span class=‘cancel‘ style=‘margin-left:14px;‘>CANCEL</span>");
  $(".alertwindow .tips").html("Are you sure you want to remove this Photo from the favorites? ");
  $(".alertwindow").show();
  $(".alertBtns .conf").unbind("click").click(function(event){
    location.href=rootDomain +‘/wishlists/delete/‘+id;
  });

});

 

jquery中click事件重复绑定问题

标签:

原文地址:http://www.cnblogs.com/sandy-happyhour/p/5316405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!