1

我们正在测试链接跟踪解决方案,目前希望将事件显示在两个不同的帐户上。我们有这样的设置:

var _gaq = _gaq || [];
  _gaq.push(
  ['_setAccount', 'UA-516606-1'],
  ['_trackPageview'],
  ['_setDomainName', 'du.edu'],
  ['b._setAccount', 'UA-516606-24'],
  ['b._trackPageview'],
  ['b._setDomainName', 'du.edu']
);
(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);
})();

我们使用的是http://support.google.com/googleanalytics/bin/answer.py?hl=en&answer=55527上的跟踪代码,但我不知道如何修改它以适用于多个帐户。此处的解决方案:Google Analytics event tracking on Multiple accounts not working因此不太有效。是否可以将 ab 帐户添加到 recordOutboundLink 函数?

4

1 回答 1

2

您只需要使用不同的recordOutboundLink功能。

function recordOutboundLink(link, category, action) {
  _gaq.push(
    ['_trackEvent', category, action],
    ['b._trackEvent', category, action]
  );
  setTimeout('document.location = "' + link.href + '"', 100);
}

然后在你的链接上

<a href="http://www.example.com" onClick="recordOutboundLink(this, 'Outbound Links', 'example.com');return false;">
于 2012-07-04T03:16:06.910 回答