增加ecshop在清空购物车时加上提醒

2016-09-07 22:02 来源:www.chinab4c.com 作者:ecshop专家

  经常有朋友反应,他们在ecshop购物车中修改数量,点“更新购物车”时,经常不小心点中了“清空购物车”,一下子,所以的产品都没了,最好是给ecshop加上一个“清空购物车”的提醒!
以下chinab4c的处理方法:
1.打开flow.dwt文件找到
<input type="button" value="{$lang.clear_cart}" class="bnt_blue_1" onclick="location.href='flow.php?step=clear'" />

在他的上面加上
<script type = "text/javascript" language = "javascript">
      function clear1()
      {
       if(confirm("您确定要清空购物车吗?"))
       {
     window.location.href="flow.php?step=clear";
       }
      }
</script>


2.再把
<input type="button" value="{$lang.clear_cart}" class="bnt_blue_1" onclick="location.href='flow.php?step=clear'" />
改为
<input type="button" value="{$lang.clear_cart}" class="bnt_blue_1" onClick="return clear1();" />

这样就完全OK啦!

(责任编辑:chinab4c)