如何通过javascript清除Firefox的控制台?

时间:2015-05-18 17:49:44

标签: javascript firefox cross-browser

我有一些函数在执行时会显示 console.log()的一些信息。

没有问题。

但是,有时候,控制台看起来很奇怪...因为那样,当按下'l'(字母'L'小写)时,他们让我清理控制台。

我把它当作一个简单的任务,我只需要使用 console.clear(),一切都会好的。

但是......我只是想:

console.clear(); // doesn't work in firefox !!!

在Chrome中它可以正常工作。

Fiddle here.

有人知道在firefox中执行此操作的任何技巧吗?

感谢您的时间。

2 个答案:

答案 0 :(得分:3)

控制台没有标准化,因此它们会有差异。 Firefox虽然提供了一些helper commands

td, th {
  display: block;
  float: left;

  /* for visibility only */
  border: 1px solid grey;

  /* so we don't run out of space with 100% total width */
  box-sizing: border-box;
}

td:last-child, th:last-child {
  width: 100%;
}

(与在Chrome中点击 CTRL + L 相同,在Firefox中点击 ALT + R )。< / p>

但是,您无法以编程方式调用它。仅适用于控制台本身。您可以选择Firebug作为选项。

答案 1 :(得分:0)

似乎无法再从clear(Firebug 30+)访问console。直接从clear();输入Firebug