为什么 console.log 语句不再出现在我的 FireBug 控制台中?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在调试的 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.