我想設置一個分析事件jQuery中這樣如何在沒有點擊事件的情況下在jQuery中設置Google Analytics事件?
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是否只定位點擊事件?或者我做錯了什麼?
非常感謝這兩個! – Viktor