gpt4 book ai didi

javascript - 记录每个 document.write

转载 作者:行者123 更新时间:2023-11-28 20:18:28 25 4
gpt4 key购买 nike

每次 document.write() 发生时,是否有办法 console.log()

类似这样的东西(似乎不起作用):

$(document).on('write', function() {
console.log('write occurred');
});

最佳答案

可能不是最好的方法,但您可以重新定义 document.write

document.__write = document.write; // copy the original definition

// redefine
document.write = function(contents) {
console.log(contents); // log
document.__write(contents); // call the original
}

PS - 要监视 DOM 的更改,您应该使用更强大的东西,例如 Mutation events

关于javascript - 记录每个 document.write,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18808940/

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