$(document).read(function(){
//删除行
$(".del").click(function(){
$(this).parent().parent().remove();
});
//通过live()方法附加的事件,不仅适合当前元素,对于通过脚本添加的元素同样适用
$(".del").live("click",function(){
$(this).parent().parent().remove();
});
})
标签:cti function 适合 move 通过 doc parent nbsp fun
$(document).read(function(){
//删除行
$(".del").click(function(){
$(this).parent().parent().remove();
});
//通过live()方法附加的事件,不仅适合当前元素,对于通过脚本添加的元素同样适用
$(".del").live("click",function(){
$(this).parent().parent().remove();
});
})
标签:cti function 适合 move 通过 doc parent nbsp fun
原文地址:http://www.cnblogs.com/atlj/p/8059130.html