FWQ
ecshop批量删除购物车商品
在ecshop实现ecshop批量删除购物车商品,1.添加checkbox复选框:在商品图片前面加一个 <input type="checkbox" name="subBox" id="subBox" value="{$goods.rec_id}" /> 2.加上一段获取复选框id的代码 function group_drop_goods(){ var id =""; $("[name='subBox']").each(function(){ if($(this).attr("checked")) { if(id){ id+=","+$(this).val(); }else{ id+=""+$(this).val(); } } }) if(id){ if(confirm('{$lang.drop_goods_confirm}')){ location.href='flow.php?step=group_drop_goods&id='+id; } }else{…