如何阻止动态元素的事件冒泡?

时间:2013-01-22 10:40:03

标签: jquery

$(".remove_btn").live('click', function(e){
   e.preventDefault();
   e.stopImmediatePropagation();
   $(this).parent("td").fadeOut("slow",function(){
     $(this).remove();
   });
});

此事件会多次触发并删除所有项目。如何阻止它。提前谢谢。

1 个答案:

答案 0 :(得分:0)

$(".remove_btn").live('click', function(e){
   $(this).parent("td").fadeOut("slow",function(){
     $(this).remove();
   });
   e.preventDefault();
});