我正在尝试评估实施的Google Analytics跟踪代码是Universal还是Classic。该帐户已升级为通用,但根据我的研究,我不认为跟踪代码已从Classic升级为通用。
以下是代码:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-7431679-1']);
_gaq.push(['_setDomainName', 'website.com']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
答案 0 :(得分:2)
这适用于经典分析。通用分析将始终使用其javascript文件名analytics.js。这是代码的示例
<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-7431679-1', 'auto');
ga('send', 'pageview');
</script>
简单地切换Google Analytics并不能完全改变,要完成切换,您需要使用新的代码更改上面的代码。