对于跟踪添加到购物车事件使用下面的代码但代码不起作用请帮我解决。
------不工作-----
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');
});
});