增强型电子商务添加到购物车事件跟踪不起作用

时间:2017-07-25 11:28:20

标签: javascript jquery google-analytics google-analytics-api

对于跟踪添加到购物车事件使用下面的代码但代码不起作用请帮我解决。

------不工作-----

ga('require', 'ec');

jQuery(document).ready(function($) {
    jQuery("#AddToCart").click(function(e) {
            ga('ec:addProduct', {
                    'id': 'P12345',
                    'name': 'Android Warhol T-Shirt',
                    'category': 'Apparel',
                    'brand': 'Google',
                    'variant': 'black',
                    'price': '29.20',
                    'coupon': 'APPARELSALE',
                    'quantity': 1
            });

            ga('send', 'event', 'Event-Category', 'Add To Cart', 'Event-Lable','Event-Value'); 
    });
});

0 个答案:

没有答案
相关问题