ecshop 批量 刪除 購物車 商品 简体版
原文   原文鏈接

1.添加checkbox複選框:在商品圖片前面加一個javascript

<input type="checkbox" name="subBox" id="subBox" value="{$goods.rec_id}" />

2.加上一段獲取複選框id的代碼php

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{
             alert('請選擇須要刪除的商品!');
         }

    }

3.在頁面適當的位置加一個刪除連接java

<a class="pldelete" href="javascript:group_drop_goods()">批量刪除</a>

4.在flow.php中加入以下代碼:加在elseif ($_REQUEST['step'] == 'drop_goods')的上一行post

elseif ($_REQUEST['step'] == 'group_drop_goods')
{
    $rec_ids = explode(',', $_GET['id']);
    foreach($rec_ids as $v){
        flow_drop_cart_goods($v);
    }
    ecs_header("Location: flow.php\n");
    exit;
}

轉載自:http://www.9958.pw/post/ecshop_cart_deletethis

相關文章
相關標籤/搜索
每日一句
    每一个你不满意的现在,都有一个你没有努力的曾经。
本站公眾號
   歡迎關注本站公眾號,獲取更多信息