$(document).read(function(){
//删除行
$(".del").click(function(){
$(this).parent().parent().remove();
});
//通过live()方法附加的事件,不仅适合当前元素,对于通过脚本添加的元素同样适用
$(".del").live("click",function(){
$(this).parent().parent().remove();
});
})
Posted 爱踢两键
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了购物车商品增减相关的知识,希望对你有一定的参考价值。
$(document).read(function(){
//删除行
$(".del").click(function(){
$(this).parent().parent().remove();
});
//通过live()方法附加的事件,不仅适合当前元素,对于通过脚本添加的元素同样适用
$(".del").live("click",function(){
$(this).parent().parent().remove();
});
})
以上是关于购物车商品增减的主要内容,如果未能解决你的问题,请参考以下文章
购物车界面,不同section,点击增减物品,确定取消选中的逻辑判断