0

看起来 Google Analytics 代码与 Google 网站优化器 (GWO)* 相同;两者均来自http://www.google-analytics.com/ga.js但是,在 GA 和 GWO 管理面板上,Google 要求我们包含(即复制粘贴)其各自的跟踪代码,它们都包含对ga.js的相同引用。也许只是为了指令简单?因此,当多个页面想要同时启用 GA 跟踪和 A/B 测试时,我看到多个页面对ga.js有冗余引用。

我的问题是我们可以做以下事情吗?希望这对那些不真正精通 JavaScript 但需要配置 GA 和 GWO 的人有用。

<head>
<script>
var _gaq = _gaq || [];
_gaq.push(['gwo._setAccount', 'UA-xxxxxxx-x']);
_gaq.push(['gwo._trackPageview', '/yyyyyyyyyy/test']);
</script>
<!-- All other meta tags. -->

<!-- Let this script serves both for the regular GA tracking and GWO A/B test. -->
<script>
(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);
  })();
</script>
</head>

*GWO 脚本通常用于 A/B 测试。

4

1 回答 1

0

是的,您可以包含一次函数 snipet,但您在那里缺少配置的 GA 部分。

于 2012-03-29T14:27:25.473 回答