Google 分析事件跟踪 - 不工作

Google Analytics Event Tracking - Not Working

我正在尝试使用 Google Analytics 跟踪来跟踪出站 link 点击。到目前为止,尽管使用 their code from this page.

,但我未能成功让 Analytics 注册任何内容

这是我尝试跟踪 link(底部:"Buy Who was Ghandi?")的示例页面:http://ourhomeschoolforum.com/reviews/history-geography/who-was-ghandi/

这是页面上的代码:

<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-{ID redacted}', 'auto');
  ga('send', 'pageview');

</script>

<script>
/**
* Function that tracks a click on an outbound link in Analytics
* This function takes a valid URL string as an argument, and uses that URL string
* as the event label. Setting the transport method to 'beacon' lets the hit be sent
* using 'navigator.sendBeacon' in browser that support it.
*/
var trackOutboundLink = function(url) {
   ga('send', 'event', 'outbound', 'click', url, {
     'transport': 'beacon',
     'hitCallback': function(){document.location = url;}
   });
}
</script>

这是我正在使用的 href:

<h2 style="text-align: center;"><a href="http://www.rainbowresource.com/product/sku/059929" target="_blank" onclick="trackOutboundLink(‘Who was Ghandi?’); return false;">Buy <em>Who Was Ghandi?</em></a></h2>

我做错了什么? Analytics Real-Time 或 Behavior > Events 的事件跟踪部分没有任何显示。我需要设置一个目标吗?

我在使用 Google 跟踪代码管理器时遇到了类似的问题。

我发现 Google 中的这个工具对调试 Analytics 非常有用。

它叫做 Tag Assistant (Google)。您可以将其添加到 Chrome

https://chrome.google.com/webstore/detail/tag-assistant-by-google/kejbdjndbnbjgmefkgdddjlbokphdefk

此外,根据我的经验 "Events" 需要比平时更长的时间才能出现在“报告”部分中,情况也可能如此。

我刚刚查看了您的网站,发现那里有两个不同的 GA 代码

  1. UA-4XXXX45-1
  2. UA-7XXXXX1-35

也有可能是因为您有两个不同的代码而无法正常工作。尝试删除一个,然后再次测试。

您需要在 onclick 处理程序中将 'smart'(或有角度的)引号更改为 'straight' 文本周围的 "Who was Ghandi?" 引号:

onclick="trackOutboundLink('Who was Ghandi?'); return false;"

Javascript 不太喜欢智能引号。