我的HTML <head>
中有以下代码
<script type='text/javascript'>
var _gaq = _gaq || [];
var pluginUrl = '//www.google-analytics.com/plugins/ga/inpage_linkid.js';
_gaq.push(['_require', 'inpage_linkid', pluginUrl]);
_gaq.push(['_setDomainName', '<%"WEBSITE"%>']);
_gaq.push(['_setAccount', '<%"ANALYTICS_ACCOUNT"%>']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
&#13;
这会自动创建Google Analytics代码。但是,它添加到页面的其中一个脚本没有ID。
<script id="undefined" type="text/javascript" async="" src="http://www.google-analytics.com/plugins/ga/inpage_linkid.js" ></script>
&#13;
我想知道是否有人知道这种情况发生的原因以及如何阻止它。