Google Analytics事件跟踪onClick代码

时间:2013-09-04 04:04:15

标签: google-analytics

我正在尝试在我的网站上设置事件跟踪,但无法使其正常工作。

我的跟踪代码:

<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-420xxxxxxx', 'mywebsite.org');
  ga('send', 'pageview');

</script>

我的活动跟踪代码:

<a href="#PurchasePanelLink" class="uk-button uk-button-primary" onClick="$('#PurchasePanel').show(); _gaq.push(['_trackEvent', 'Button', 'Click', 'Purchase Details',, false]);">Purchase Details</a>

3 个答案:

答案 0 :(得分:55)

您正在将经典代码与通用代码混合使用。不起作用。你需要替换它:

_gaq.push(['_trackEvent', 'Button', 'Click', 'Purchase Details',, false]);

有了这个:

ga('send', 'event', 'Button', 'Click', 'Purchase Details');

GAJS活动参考:https://developers.google.com/analytics/devguides/collection/upgrade/reference/gajs-analyticsjs#events

答案 1 :(得分:8)

您似乎正在使用新的analytics.js而不是ga.js,因此您需要使用正确的事件跟踪方法集:

ga('send', 'event', 'category', 'action');

答案 2 :(得分:6)

可以使用send命令发送事件命中。根据新的analytics.js

语法:

ga('send', 'event', [eventCategory], [eventAction], [eventLabel], [eventValue], [fieldsObject]);

例如,如果您想跟踪购买活动

ga('send', 'event', 'Button', 'Click', 'Purchase Details');

<强>这里: -

eventCategory 是按钮。它是必填字段,其值类型为文本

点击

eventAction 。它是必填字段,其值类型为文本

eventLabel 是购买详情。它是可选字段,其值类型为文本

eventValue 为空。它是可选字段,其值类型是整数