使用Google Universal Analytics跟踪事件

时间:2014-04-29 18:22:00

标签: javascript google-analytics

我已将此代码添加到我的博客中以进行点击跟踪:

<script>
var trackOutboundLink = function (url) {
   ga('send', 'event', 'outbound', 'click', url, {
      'hitCallback': function () {
         document.location = url;
      }
   });
}
</script>

<a href="http://www.example.com" onclick="trackOutboundLink('http://www.example.com'); return false;">Check out example.com</a>

但谷歌分析没有显示任何点击。也许代码无法正常工作。

请您告诉我代码的问题吗?

博客网址:http://beebom.com/

1 个答案:

答案 0 :(得分:0)

在此处和您的示例页面上,您使用了错误的引号导致错误:

SyntaxError: illegal character

更改

<a href="http://www.example.com" onclick=”trackOutboundLink(‘http://www.example.com’); return false;">Check out example.com</a>

<a href="http://www.example.com" onclick="trackOutboundLink('http://www.example.com'); return false;">Check out example.com</a>

不要忘记在您网站的所有链接上进行更改。