您可以以编程方式访问 Firebug 控制台输出吗?

Can you programmatically access the Firebug console output?(您可以以编程方式访问 Firebug 控制台输出吗?)
本文介绍了您可以以编程方式访问 Firebug 控制台输出吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

是否可以通过编程方式访问先前记录的 Firebug 输出?

Is it possible to access the previously-logged output of Firebug programmatically?

例如:

console.log('a');
console.log('b');
console.log('c');

for (var i = 0; i < console.output.length; ++i) {
    alert(console.output[i]);  // "a", "b", "c"
}

推荐答案

如果不自己包装 window.console,我不相信这是可能的.查看源代码,似乎当调用 Firebug 的 console 方法(在主文档中运行,因此没有特殊权限)时,它会在主文档中留下一些对象,然后引发一个自定义事件.在特权插件域中运行的 Firebug 侦听器拾取事件,吞噬文档中剩余的对象并将适当的内容添加到控制台面板,控制台面板是浏览器 chrome 的一部分,因此无法访问在主程序中运行的 JavaScript窗口.

Without wrapping window.console yourself, I don't believe this is possible. Looking at the source, it seems that when a Firebug's console method (running within the main document and therefore having no special privileges) is called, it leaves some objects lying around in the main document and then raises a custom event. A Firebug listener running in privileged-plug-in-land picks up the event, gobbles up the objects left in the document and adds appropriate things to the console panel, which is part of the browser chrome and therefore inaccessible to JavaScript running in the main window.

我可能对这方面的细节有误,因为我只是粗略地查看了 Firebug 源代码,并且很少进行 Firefox 插件开发,但我认为这大体上是正确的.

I could be wrong about the details of this because I've only taken a cursory look at the Firebug source and done very little Firefox plug-in development, but I think this is broadly correct.

这篇关于您可以以编程方式访问 Firebug 控制台输出吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
Ordinals in words javascript(javascript中的序数)
getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)