将事件推送到多个配置文件

时间:2012-07-03 23:42:23

标签: google-analytics

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

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因此而无法正常工作。是否可以在recordOutboundLink函数中添加b帐户?

1 个答案:

答案 0 :(得分: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;">