31

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

我的跟踪代码:

<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>
4

3 回答 3

62

您将经典代码与通用代码混合在一起。不起作用。你需要替换这个:

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

有了这个:

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

GAJS 事件参考:https ://developers.google.com/analytics/devguides/collection/analyticsjs/events#implementation

于 2013-09-04T04:17:20.213 回答
12

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

句法:

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

例如,如果您想跟踪购买事件

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

这里:-

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

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

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

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

于 2017-10-17T06:16:52.377 回答
8

看起来您使用的是 newanalytics.js而不是ga.js,因此您需要使用正确的事件跟踪方法集:

ga('send', 'event', 'category', 'action');
于 2013-09-04T04:17:10.740 回答