Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 jQuery 读取 console.log 的输出?我的意思是,如果我使用console.log 在控制台(FIREBUG)中获得一些价值,有没有办法使用某种方式在jquery 函数中获得它?
不,但您可以简单地用自定义方法替换该方法。
var old_console_log = console.log; var logged = []; console.log = function() { var args = Array.prototype.slice.call(arguments); logged.push(args); old_console_log.apply(console, args); }