我想强制外部第三方脚本(在单独的域上)在我的域上加载时使用我自己的document.write自定义实现。
即:
document.write = function(args) {
// My custom Function
}
这适用于同一域上的脚本,但其他域上的脚本使用浏览器默认值。我可以覆盖这个吗?
答案 0 :(得分:0)
你在这里:
(window.HTMLDocument ? HTMLDocument.prototype : document).write = function(s) {
this.title = s;
}
在IE和非IE中,“this”对象都是浏览器文档对象。