我正在尝试将谷歌分析应用到我的网站。我已经粘贴了他们的代码,其中包含这样的功能:
(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>
是否有机会获得良好的解决方案?这有风险吗? 而实际的问题 - 为什么这个功能变得空洞?
由于