我正在尝试实施 Google-Analytics,但结果很奇怪:
在加载页面时,这个脚本部分:
(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() )();
自然导致语法错误。
我试图从页面中删除 Jquery(当我在某处读到这会导致问题)但它没有帮助......
有任何想法吗?