Embed JS Console within website

前端 未结 3 1240
孤城傲影
孤城傲影 2020-12-18 00:46

I want to embed a JS-Console within a website for extended debugging purposes. Are there any libraries or hooks available? How can I catch console.log messages?

3条回答
  •  难免孤独
    2020-12-18 01:41

    How can I catch console.log messages?

    You can monkey-patch the real console.log method and do whatever you like with the input:

    var realConsoleLog = console.log;
    console.log = function () {
        var message = [].join.call(arguments, " ");
        // Display the message somewhere... (jQuery example)
        $(".output").text(message);
        realConsoleLog.apply(console, arguments);
    };
    

    Here's a working example. It logs calls to console.log in the .output element, as well as in the console like usual.

提交回复
热议问题