我的任务是在我们网站的多个页面上添加一些“Doubleclick Spotlight”标签,以帮助收集即将推出的广告系列的数据。
我们的网站每月获得大约100万独立访问者,因此我总是谨慎地将其他人的代码添加到我们的存储库中。
这是代码的样子(并且打算放在我们的body标签内)。
<script type="text/javascript">
var axel = Math.random() + "";
var a = axel * 10000000000000;
document.write('<img src="http://ad.doubleclick.net/activity;src=99999;type=foo315;cat=bar561;ord=' + a + '?" width="1" height="1" alt=""/>');
</script>
<noscript>
<img src="http://ad.doubleclick.net/activity;src=99999;type=foo315;cat=bar561;ord=1?" width="1" height="1" alt="">
</noscript>
我的问题是:这会带来风险吗?它会阻止页面加载还是会产生其他一些不利影响?我想不出任何明显的东西,但会喜欢你的见解,经历或想法。
由于
答案 0 :(得分:0)
是的,document.write()
阻止了进一步的页面加载。