Google Analytics悬停事件跟踪

时间:2015-02-22 21:49:28

标签: javascript google-analytics universal-analytics

这就是我使用GA Universal Analytics跟踪点击事件的方式。如何悬停?

ga('send', 'event', 'button', 'click', {'nonInteraction': 1, 'eventLabel': 'bottom-cta', 'page': document.URL, 'eventValue': 0});

就是这个吗?

ga('send', 'event', 'button', 'hover', {'nonInteraction': 1, 'eventLabel': 'bottom-cta', 'page': document.URL, 'eventValue': 0});

1 个答案:

答案 0 :(得分:1)

要跟踪事件悬停,您仍需要添加正确的JavaScript。例如,如果您使用的是jQuery:

$("#someID").mouseover(function(){
    ga('send', 'event', 'button', 'hover', ...);
)}

重点是GA事件参数没有定义事件的逻辑。到目前为止,它仍然是JavaScript。