为什么 console.log 语句不再出现在我的 FireBug 控制台中?

发布于 2024-08-19 20:31:36 字数 113 浏览 7 评论 0原文

我正在使用 FF 3.6 和 FireBug 1.5.0

我的 console.log 语句不再出现在我的 Firebug 控制台中。还有其他人遇到过这种情况吗?是否有某个我不知道的设置被切换了?

I'm using FF 3.6 and FireBug 1.5.0

my console.log statements are no longer appearing in my firebug console. is anyone else experiencing this? is there a setting somewhere that got switched that I don't know about?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等待圉鍢 2024-08-26 20:31:36

如果您正在调试的 JavaScript 尝试向控制台变量写入某些内容,则可能会发生这种情况。作为示例,我将以下代码粘贴到随机的 javascript 文件中:

console = {};
console.log('asdfasdf');

尝试将 console 设置为空对象后,console.log 没有执行任何操作。

要解决此问题,您只需找出脚本尝试更改控制台变量的位置,然后刷新页面即可。

This can happen if the javascript you are debugging tries to write something to the console variable. As an example, I stuck the following code into a random javascript file:

console = {};
console.log('asdfasdf');

After trying to set console to an empty object, console.log didn't do anything.

To fix this, you should only need to figure out where your script is trying to change the console variable, and then refresh the page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文