显然,很多广告人员都使用document.write()将其他脚本插入页面中。
例如:
var url = 'http://ads.com/buyme?rand=' + Math.random()
document.write('<script src="'+ url +'"></scr'+'ipt>')
使用这些技术的优势是什么?
为什么不像往常一样将<script src="'http://ads.com/buymev?rand=123"></script>
写入HTML?或使用document.createelement('script')?
当我想向某人展示广告时,使用document.write()的特殊好处是什么?
document.Write可以将任意,甚至部分不完整和畸形的HTML附加到文档中。它非常快,因为浏览器不必修改现有的DOM结构。
很棒的链接http://javascript.info/tutorial/document-write