购物车商品增减

$(document).read(function(){

  //删除行

     $(".del").click(function(){

         $(this).parent().parent().remove();

      });

   //通过live()方法附加的事件,不仅适合当前元素,对于通过脚本添加的元素同样适用

    $(".del").live("click",function(){

         $(this).parent().parent().remove();

     });

})

posted @ 2017-12-18 19:02  爱踢两键  阅读(266)  评论(0编辑  收藏  举报