gpt4 book ai didi

javascript - 别名化其他域上的DOM函数(Document.Write)和脚本

转载 作者:行者123 更新时间:2023-12-04 17:53:56 25 4
gpt4 key购买 nike

我想强制外部第三方脚本(在单独的域上)在将它们加载到域上时使用我自己的document.write实现。

即:

document.write = function(args) {
// My custom Function
}

这对于相同域上的脚本可以正常工作,但其他域上的脚本使用浏览器默认设置。我可以覆盖吗?

最佳答案

这个给你:

(window.HTMLDocument ? HTMLDocument.prototype : document).write = function(s) {
this.title = s;
}

在IE和非IE中,“此”对象都是浏览器文档对象。

关于javascript - 别名化其他域上的DOM函数(Document.Write)和脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/927441/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com