Google analytics 发布新的跟踪代码-google analytics 异步跟踪代码

2009年12月9日 | 标签:

根据google官方的网页介绍http://code.google.com/apis/analytics/docs/tracking/asyncTracking.html

此代码的和以前的代码的区别在于可以提升用户体验 无论用户讲代码放置在哪 都可以优化装载速度 最小的减少对用户的速度的影响

<script type="text/javascript"> 

  var _gaq = _gaq || []; 
  _gaq.push(['_setAccount', 'UA-XXXXX-X']); 
  _gaq.push(['_trackPageview']); 

  (function() { 
    var ga = document.createElement('script'); 
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; 
    ga.setAttribute('async', 'true'); 
    document.documentElement.firstChild.appendChild(ga); 
  })(); 

</script>
'UA-XXXXX-X 换成自己的 不懂的朋友可以看我的博客的源代码 我已经换过来了

					
目前还没有任何评论.