我需要使用 Google 的新analytics.js 在一页上跟踪两个帐户的综合浏览量。有很多教程和示例如何使用较旧的 ga.js 进行操作。但我发现的只是这个Analytics 文档页面。我已经编写了适合给定示例的代码,但它只跟踪第一个(默认)跟踪器的视图,而不是第二个跟踪器的视图。
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-XXXXXXXX-3', 'domain.com');
ga('create', 'UA-ZZZZZZZZ-1', {'name':'b'});
ga('send', 'pageview');
ga('b.send', 'pageview');
</script>
有人知道我的代码有什么问题吗?根据谷歌的例子,我觉得很好。