我正在尝试像这样在
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仅针对点击事件吗?或者我做错了什么?
答案 0 :(得分:2)
_trackEvent
可以无声地失败。将time_to_open
转换为字符串,或将其作为opt_value
参数传递。
_gaq.push(['_trackEvent', 'animation', 'started', undefined, time_to_open]);
答案 1 :(得分:1)
以下是样本:
jQuery(document).ready(function() {
var time_to_open = 15000;
if(readCookie('cookie') != 'set') {
var t = window.setTimeout(function() {
jQuery('#my_animation').animate({left: 0}, 1000);
createCookie('cookie', 'set', 1);
_gaq.push(['_trackEvent', 'animation', 'started', 'time_to_open', time_to_open, false]);
}, time_to_open);
}
});