我正在尝试像这样在 jQuery 中设置分析事件
jQuery(document).ready(function() {
var time_to_open=15000;
if(readCookie('cookie')!='set'){
setTimeout(function() {
jQuery('#my_animation').animate({left: 0}, 1000);
createCookie('cookie', 'set', 1);
_gaq.push(['_trackEvent', 'animation', 'started', time_to_open]);
},time_to_open);
}
});
这应该跟踪动画显示的频率。但它不起作用。_trackEvent 是否仅针对点击事件?或者我做错了什么?