如何刷新页面并删除删除产品,单击opencart标题下拉列表中的删除按钮

时间:2016-06-01 06:54:45

标签: javascript jquery opencart

我尝试刷新页面,同时删除购物车删除数据,当点击opencart标题上的下拉菜单上的删除按钮时。我在cart.tpl上找到了这个位置,但是点击那个按钮就找不到功能的位置了。

onclick="cart.remove('<?php echo $product['key']; ?>');

我尝试使用jquery刷新页面

    <script type="text/javascript">
  jQuery(document).ready(function(){
    $('.dropdown-menu .text-center .btn-xs').click(function(){
      location.reload(); 
    });

  });  
</script>

刷新页面但不删除购物车产品。

1 个答案:

答案 0 :(得分:4)

打开文件catalog/view/javascript/common.js。转到line 200

更改此

'remove': function(key) {
        $.ajax({
            url: 'index.php?route=checkout/cart/remove',
            type: 'post',
            data: 'key=' + key,
            dataType: 'json',
            beforeSend: function() {
                $('#cart > button').button('loading');
            },
            complete: function() {
                $('#cart > button').button('reset');
            },          
            success: function(json) {
                // Need to set timeout otherwise it wont update the total
                setTimeout(function () {
                    $('#cart > button').html('<span id="cart-total"><i class="fa fa-shopping-cart"></i> ' + json['total'] + '</span>');
                }, 100);

                if (getURLVar('route') == 'checkout/cart' || getURLVar('route') == 'checkout/checkout') {
                    location = 'index.php?route=checkout/cart';
                } else {
                    $('#cart > ul').load('index.php?route=common/cart/info ul li');
                }
            }

到这个

'remove': function(key) {
        $.ajax({
            url: 'index.php?route=checkout/cart/remove',
            type: 'post',
            data: 'key=' + key,
            dataType: 'json',
            beforeSend: function() {
                $('#cart > button').button('loading');
            },
            complete: function() {
                $('#cart > button').button('reset');
            },          
            success: function(json) {
                // Need to set timeout otherwise it wont update the total
                setTimeout(function () {
                    $('#cart > button').html('<span id="cart-total"><i class="fa fa-shopping-cart"></i> ' + json['total'] + '</span>');
                }, 100);

                if (getURLVar('route') == 'checkout/cart' || getURLVar('route') == 'checkout/checkout') {
                    location = 'index.php?route=checkout/cart';
                } else {
                    $('#cart > ul').load('index.php?route=common/cart/info ul li');
                }
                location.reload();
            }