本文介绍: 实现功能:1、购物车全选与全不选2、删除选中商品3、直接删除商品4、数量和价格修改5、计算总价$(function(){ //全选与全不选 $(“#allCheckBox“).click(function (){ var flag=$(this).is(“:checked“); //记录此时全选框的状态 $(“input[name=’cartCheckBox‘]”).each(function (){ //遍历所有cartCheck
实现功能:
3、直接删除商品
4、数量和价格修改
5、计算总价
$(function(){
//全选与全不选
$("#allCheckBox").click(function (){
var flag=$(this).is(":checked"); //记录此时全选框的状态
$("input[name='cartCheckBox']").each(function (){ //遍历所有cartCheckBox复选框
$(this).prop("checked",flag); //让复选框cartCheckBox的check与全选框保持一致
});
});
//删除选中商品
$("#deleteAll").click(function (){ //如果点击删除所选按钮,就会删除选中商品
$("input[name='cartCheckBox']:checked").each(function (){ //遍历选中的复选框
n=$(this).parents("tr").index();//获取复选框的行的顺序
$("table#shopping").find("tr:eq("+n+")").remove();
$("table#shopping").find("tr:eq("+(n-1)+")").remove();//移除该行与上一行(上一行为店铺名称)
});
productCount();
});
//直接删除商品
$(".cart_td_8").find("a").click(function (){
var link=$(this).parents("tr").index();
$("table#shopping").find("tr:eq("+link+")").remove();
$("table#shopping").find("tr:eq("+(link-1)+")").remove();
productCount();
});
//数量和价格修改
$('#shopping').find('.cart_td_6').find('img').filter('[alt="minus"]').click(function (){
var t=$(this).parent().find(".num_input");
if (t.val()==""||undefined||null){
t.val(0);
}
t.val(parseInt(t.val())-1);
if (parseInt(t.val())<0){
t.val(0);
}
productCount();
});
$('#shopping').find('.cart_td_6').find('img').filter('[alt="add"]').click(function() {
var t = $(this).parent().find(".num_input");
if(t.val()==""||undefined||null){
t.val(0);
}
t.val(parseInt(t.val()) + 1);
productCount();
});
//计算总价
function productCount(){
var $tr=$("#shopping").find("tr[id]");
var summer=0;
var integral=0;
$tr.each(function(i,dom){
var num=$(dom).children(".cart_td_6").find("input").val();//商品数量
var price=num*$(dom).children(".cart_td_5").text();//商品小计
$(dom).children(".cart_td_7").html(price);//显示商品小计
summer+=price;//总价
integral+=$(dom).children(".cart_td_4").text()*num;//积分
});
$("#total").text(summer);
$("#integral").text(integral);
}
});
原文地址:https://blog.csdn.net/m0_47887988/article/details/123766157
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_30900.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。