1

我正在尝试在我的网站上实施谷歌分析。我已经粘贴了他们的代码,其中包含这样的功能:

(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);
})();  

但是当我将它上传到我的网站时,它看起来像这样:

(function() )();

我通过将代码更改为:

<script src="http://www.google-analytics.com/ga.js" async type="text/javascript"></script>
<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-39971460-1']);
  _gaq.push(['_trackPageview']);
</script>

这是一个很好的解决方案吗?有什么风险吗?
而实际的问题——为什么这个函数会变空?

谢谢

4

0 回答 0