添加购物车并重定向到当前页面后,Opencart quickview关闭

时间:2016-08-02 09:04:37

标签: javascript php jquery ajax opencart

我使用的opencart和我正在使用的主题有一个产品快速查看功能,可以在弹出窗口中打开产品

如果我点击弹出式产品已添加到购物车中而未在外页更新,但如果我刷新页面购物车已更新,我想在我点击弹出式添加到购物车后重定向到当前网址

ajax发布数据后的jquery代码

    success: function(json) {
        $('.alert, .text-danger').remove();
        $('.form-group').removeClass('has-error');

        if (json['error']) {
            if (json['error']['option']) {
                for (i in json['error']['option']) {
                    var element = $('#input-option' + i.replace('_', '-'));

                    if (element.parent().hasClass('input-group')) {
                        element.parent().after('<div class="text-danger">' + json['error']['option'][i] + '</div>');
                    } else {
                        element.after('<div class="text-danger">' + json['error']['option'][i] + '</div>');
                    }
                }
            }

            if (json['error']['recurring']) {
                $('select[name=\'recurring_id\']').after('<div class="text-danger">' + json['error']['recurring'] + '</div>');
            }

            // Highlight any found errors
            $('.text-danger').parent().addClass('has-error');
        }

        if (json['success']) {


            $('#notification').html('<div class="alert alert-success">' + json['success'] + '<button type="button" class="close" data-dismiss="alert">&times;</button></div>');

            $('#cart-total').html(json['total']);

            $('html, body').animate({ scrollTop: 0 }, 'slow');

            $('#cart > ul').load('index.php?route=common/cart/info ul li');
        }
    }
});

如果我使用window.location,则不会删除购物车弹出窗口

如果我使用window.location.reload(true);,则会在弹出窗口中刷新页面

我的网站链接是 http://apnakaryana.com/index.php?route=product/category&path=94

单击产品图像或名称以显示左侧的快速视图弹出窗口

1 个答案:

答案 0 :(得分:0)

最后我找到了解决方案,我在弹出窗口中获取文本中的上一个url 并使用jquery获取它并使用parameter '_top'并使用允许重定向到同一窗口并关闭弹出窗口的$('#notification').html('<div class="alert alert-success">' + json['success'] + '<button type="button" class="close" data-dismiss="alert">&times;</button></div>'); $('#cart-total').html(json['total']); $('html, body').animate({ scrollTop: 0 }, 'slow'); $('#cart > ul').load('index.php?route=common/cart/info ul li'); alert('Product is Added to the cart'); window.open($('#request_url').text(),'_top');

Game