html5 – 在网站内嵌入JS控制台

前端之家收集整理的这篇文章主要介绍了html5 – 在网站内嵌入JS控制台前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在网站中嵌入一个JS-Console以进行扩展调试.有没有可用的库或钩子?我怎样才能捕获console.log消息?

解决方法

How can I catch console.log messages?

您可以使用输入修改真正的console.log方法并执行任何操作:

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);
};

这是一个working example.它记录了.output元素中的console.log以及通常的控制台中的调用.

原文链接:https://www.f2er.com/html5/240962.html

猜你在找的HTML5相关文章