Opencart IE问题购物车下拉列表无法在其他浏览器中正常工作

时间:2012-08-06 23:35:27

标签: internet-explorer opencart

对于我的生活,我找不到导致opencart购物车标题在IE中工作的问题或混淆。它在其他浏览器中运行良好。

当您访问我网站上的产品并按(添加到购物车)时,似乎没有ajax更新购物车,也不会在点击时显示购物车。

要复制问题,请转到IE中的http://www.hollinwoodhydroponics.co.uk/ph-nutrient-management/ph-buffer-4并尝试添加到购物车。另请注意成功:消息不显示。

Opencart 1.5.1.3 更新:一切都在catagory页面上工作,所以我认为这可能是我的问题:

<script type="text/javascript">
if (!window.console) {var console = {};}
if (!console.log) {console.log = function() {};}

function updatePx() {
console.log('OPU: updatePx() called');
    var ajaxurl = 'index.php?option=com_aceshop&format=raw&tmpl=component&route=product/option_price_update/updatePrice';

jQuery.ajax({
    type: 'post',
    url: ajaxurl,
    dataType: 'json',
    data: jQuery(':input[name^="option"][type=\'checkbox\']:checked, :input[type=\'hidden\'], :input[name^="option"][type=\'radio\']:checked, select[name^="option"], :input[name=\'quantity\']'),

    success: function (mydata) {
        console.log('OPU: mydate.price'+mydata.price);
        console.log('OPU: mydate.special'+mydata.special);
        console.log('OPU: mydate.tax'+mydata.tax);

        // Update the main price with the new price.

        jQuery('#opu_price').fadeOut('100').queue(function(n){jQuery(this).html(mydata.price); n();}).fadeIn('100');
        jQuery('#opu_special').fadeOut('100').delay(100).queue(function(n){jQuery(this).html(mydata.special); n();}).fadeIn('100');
        jQuery('#opu_tax').fadeOut('100').delay(200).queue(function(n){jQuery(this).html(mydata.tax); n();}).fadeIn('100');
    },
    error: function(xhr, ajaxOptions, thrownError) {
        console.log(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
    }
});
}

jQuery(document).ready(function () {
console.log('OPU: initialized');
var $updateOnLoad = false; // Change to true if using 1.4.x or want to force an update on page load

// Update on initial page load for 1.4.x only
if ($updateOnLoad) {
    updatePx();
}

// Update whenever the triggerable page inputs are changed
jQuery(':input[name^="option"],:input[name^="quantity"]').change(function(){
    updatePx();
});

});
</script>

提前感谢您对可能导致此问题或冲突的任何见解。

1 个答案:

答案 0 :(得分:0)

我看到你也在使用mootools。我猜这是问题的根源,请看一下http://docs.jquery.com/Using_jQuery_with_Other_Libraries