Google Analytics事件跟踪 - 无效

时间:2016-03-16 13:54:57

标签: javascript google-analytics event-tracking outbound

我尝试使用Google Analytics跟踪来跟踪出站链接点击次数。到目前为止,尽管使用了their code from this page,但我还是没有成功地让Google Analytics注册任何内容。

这是一个示例页面,我试图跟踪一个链接(在底部:"买谁是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>

我做错了什么? “分析实时或行为”的事件跟踪部分中未显示任何内容&gt;活动。我需要设定目标吗?

2 个答案:

答案 0 :(得分:5)

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

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

它被称为标记助手(Google)。您可以将其添加到Chrome

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

另外,根据我的经验和#34;活动&#34;花费比往常更长的时间出现在报告部分,也可能是这种情况。

我刚检查过您的网站,我发现有两种不同的GA代码

  1. UA-4XXXX45-1
  2. UA-7XXXXX1-35
  3. 也可能因为你有两个不同的代码而无法工作。尝试删除一个,然后再次测试。

答案 1 :(得分:4)

您需要将“智能”(或角度)引号更改为“谁是Ghandi?”周围的“直线”引号?文本,在onclick处理程序中:

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

Javascript并不喜欢智能引号。