我有一个域名:something.com和something.org 我在GA中为每个域创建了2个属性。
我的问题是我无法找到将它放在页面上的好方法。
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-xxxxxxx-1', 'auto');
ga('send', 'pageview');
ga('create', 'UA-xxxxxxx-2', 'auto', 'secondTracker');
ga('secondTracker.send', 'pageview');
</script>
答案 0 :(得分:0)
您可以使用window.location.hostname
<script>
switch(window.location.hostname) {
case "domain1.com":
ga('create', 'UA-xxxxxxx-1', 'auto');
ga('send', 'pageview');
break;
case "domain2.com":
ga('create', 'UA-xxxxxxx-2', 'auto');
ga('send', 'pageview');
break;
}
</script>
答案 1 :(得分:0)
在js
中你可以这样做:
if(window.location.hostname == "something.org") {
ga('create', 'UA-xxxxxxx-2', 'auto');
ga('send', 'pageview');
} else {
ga('create', 'UA-xxxxxxx-2', 'auto');
ga('send', 'pageview');
}
答案 2 :(得分:0)
您可以创建第二个跟踪器:
ga('create', 'UA-XXXXX-Y', 'auto', 'secondTracker');
然后使用它发送事件:
ga('secondTracker.send', 'pageview');
但是为什么你会使用两种不同的属性?使用一个并使用过滤器显示报告。更多信息here