2012-10-03 35 views
1

我发现这个js的一些页面sources.actually这个java脚本做什么?javascript过程解释

<script type="text/javascript"> 

    var _gaq = _gaq || []; 
    _gaq.push(['_setAccount', 'UA-20823326-1']); 
    _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); 
    })(); 

</script> 

回答

4

这是Google Analytics(分析)跟踪器脚本。你可以找到更多关于它here

+0

感谢亚当.... – bews99