Google 웹 로그 분석 코드는 Google 웹 사이트 최적화 도구 (GWO) *와 동일합니다. 둘 다 http://www.google-analytics.com/ga.js에서 제공됩니다. 그러나 GA 및 GWO 관리 패널에서 Google은 ga.js에 대한 참조를 모두 포함하는 해당 추적 코드를 포함 (즉, 복사하여 붙여 넣기)하도록 요청합니다. 어쩌면 명령 단순성을 위해서입니까? 따라서 GA 추적 및 A/B 테스트를 동시에 사용하려면 여러 페이지에 ga.js에 대한 중복 참조가있는 것을 확인했습니다.Google 웹 로그 분석 (GA) 및 Google 웹 사이트 최적화 도구 (GWO)에 대한 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 테스트에 사용됩니다.
무엇이 발생하는지 테스트 해 보시지 않겠습니까? –