我爲了跟蹤一些Ajax事件做了一個幫手我的JavaScript通過谷歌分析對象的功能,這裏是它的成立是問題通過參考
analytics:{
active: false,
gaq: null,
init: function(gaq){
this.active = true;
this.gaq = gaq;
$('a[href^=\"http://\"]').live('click', function() {
helper.analytics.trackPageview('/outgoing/' + $(this).attr('href'));
return true;
});
},
trackPageview: function(page){
if(this.active === false){
return;
}
this.gaq.push(['_trackPageview',page]);
}
},
短版和我有共同的谷歌分析設置
<script type="text/javascript">
var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-xxxxxxxx-1']);
_gaq.push(['_setDomainName', '.example.com']);
_gaq.push(['_trackPageview']);
(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);
})();
$(document).ready(function() {
helper.analytics.init(_gaq);
});
</script>
然而在控制檯登錄_gaq
結果中的對象。將helper.analytics.gaq
結果記錄到一個數組中,並附加新的瀏覽量,但在Google Analytics(分析)中不會跟蹤綜合瀏覽量。
爲什麼_gaq沒有通過引用傳遞給幫助者?
偉大的,這解決了它:) – Moak 2012-02-15 09:30:17