1

リンク追跡ソリューションをテストしており、現時点では、2つの異なるアカウントでイベントを表示したいと考えています。次のような設定があります。

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アナリティクスのイベント追跡が機能しないため、これが原因で完全に機能しません。recordOutboundLink関数にabアカウントを追加することは可能ですか?

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 に答える