0

这是我正在使用的脚本,直接从 Google 复制:

<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-CODE']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

    function recordOutboundLink(link, category, action) {
        try {
          var myTracker=_gat._getTrackerByName();
          _gaq.push(['myTracker._trackEvent', category ,  action ]);
          setTimeout('document.location = "' + link.href + '"', 100);
        }catch(err){}
    }
</script>

这是我要跟踪的链接:

<a href="http://www.website.com/" target="_blank" class="ad" onClick="recordOutboundLink(this, 'Outbound Links', 'Visited website.com');return false;"></a>

然而,在过去的 3 天里,我的事件报告中没有显示任何内容。我的代码有问题吗?

4

1 回答 1

1

Google 的出站链接跟踪示例存在问题

假设您只使用一个跟踪器(在您的代码中看起来像),以下将起作用:

function recordOutboundLink(link, category, action) {
    try {
      _gaq.push(['_trackEvent', category ,  action ]);
      setTimeout('document.location = "' + link.href + '"', 100);
    }catch(err){}
}
于 2012-07-03T17:33:47.643 回答