开发者问题收集
网页将内置的 javascript 方法设置为null,而我正尝试找到一种方法来调用用户脚本中的重写方法。请考虑以下代码:// Overriding the native method to something elsedocument.querySelectorAll = null;现在,如果我尝试执行document.querySelectorAll('#an-example'),我将收到异常
我想覆盖console.log方法,以便在调用console.log时调用一组任务。我参考了其他 Stackoverflow 答案,但结果却给出错误:Uncaught RangeError: Maximum call stack size exceeded.这就是我想要做的:backupconsolelog = console.log;console.log = function(argument