停止Firebug控制台命令错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了停止Firebug控制台命令错误相关的知识,希望对你有一定的参考价值。

Sometimes i forget to remove firebug console commands when debuging, which makes IE and some other browsers fail / cry.

To stop this happening use the below script from firebugx.js on the firebug lite homepage.
  1. (function(){
  2. if (!window.console || !console.firebug) {
  3. var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
  4.  
  5. window.console = {};
  6. for (var i = 0; i < names.length; i++) {
  7. window.console[names[i]] = function(){};
  8. }
  9. }
  10. })();

以上是关于停止Firebug控制台命令错误的主要内容,如果未能解决你的问题,请参考以下文章

如何在Youtube中使用Javascript停止视频?

MySQL系列:kafka停止命令

Console命令详解,让调试js代码变得更简单

为啥 FireBug 分析器不会停止运行?

FireBug 1.7.3 不会因任何错误而中断,在继续之后,甚至是“调试器”语句

Firebug 控制台错误 HTTP 407 需要代理身份验证