JavaScript onclick事件无法在移动设备上运行

时间:2017-03-07 13:51:30

标签: javascript html onclick opencart

我们正在运行Opencart 1.5.6.4,它使用以下代码将项目添加到购物车。

<input type="button" value="<?php echo $button_cart; ?>" onclick="addToCart('<?php echo $product['product_id']; ?>');" class="button" />

我们注意到,在移动设备上,Javascript onclick事件似乎无效。

javascript函数如下

function addToCart(product_id, quantity) {
    quantity = typeof(quantity) != 'undefined' ? quantity : 1;

        $.ajax({
            url: 'index.php?route=checkout/cart/add',
            type: 'post',
            data: 'product_id=' + product_id + '&quantity=' + quantity,
            dataType: 'json',
            success: function(json) {
                $('.success, .warning, .attention, .information, .error').remove();

                if (json['redirect']) {
                    location = json['redirect'];
                }

                if (json['success']) {
                    $('#notification').html('<div class="success" style="display: none;">' + json['success'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>');

                    $('.success').fadeIn('slow');

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

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

5 个答案:

答案 0 :(得分:1)

尝试在代码中添加触摸事件。

$("input.button").on("click touchend", function () {
    addToCart($(this).attr("data-product-id"));
});

function addToCart(product_id, quantity) {
    quantity = typeof(quantity) != 'undefined' ? quantity : 1;

    $.ajax({
        url: 'index.php?route=checkout/cart/add',
        type: 'post',
        data: 'product_id=' + product_id + '&quantity=' + quantity,
        dataType: 'json',
        success: function(json) {
            $('.success, .warning, .attention, .information, .error').remove();

            if (json['redirect']) {
                location = json['redirect'];
            }

            if (json['success']) {
                $('#notification').html('<div class="success" style="display: none;">' + json['success'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>');

                $('.success').fadeIn('slow');

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

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

<强> HTML:

<input type="button" value="<?php echo $button_cart; ?>" data-product-id="<?php echo $product['product_id']; ?>" class="button" />

您可以在触摸事件here上找到更多参考资料。

答案 1 :(得分:0)

检查此功能是否确实运行。可能会放置一些console.log。

关于@ volodymyr-duday anwser:事件对象stopPropagation()中有一个方法,而不是返回false。

如果功能未运行,请尝试将其附加到触摸事件,如touchend

答案 2 :(得分:0)

我可以看到你使用jQuery。 如果您的点击事件未触发,您可以尝试

function addToCart(product_id, quantity){}

onclick="addToCart('<?php echo $product['product_id']; ?>');"

否则,我发现您的方法需要2个参数,但在您的活动中您只有一个

{{1}}

答案 3 :(得分:0)

由于www,Ajax失败了。网站网址中缺少。

答案 4 :(得分:-2)

尝试在 AJAX 之后使用 return false 来停止冒泡。