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.
我正在使用 Chrome 的 DevTools 控制台来调试网页。有没有办法将控制台中输出的内容传输到主网页?
You could try and replace console.log if its just those messages which you are trying to capture with something like
console.log = function(what){ //Do what you want with what has been logged alert(what); };