如何直接写入控制台?

时间:2014-06-05 19:27:15

标签: firefox browser console firebug inspector

我在SO上阅读了一个问题的答案,有人建议直接写入控制台。我想,这听起来很酷让我们试一试。我接着尝试了,但我无法理解。如何直接在控制台中编写/运行代码?我试过Firebug& Firefox的检查员和我也进行了一些Google搜索。我误解了什么吗?

2 个答案:

答案 0 :(得分:1)

Firebug有两种方法可以执行一些代码(并写入控制台)。这些是Command Line底部的Console panel

Firebug Command Line

Command Editor如果你想写一些更大的脚本:

Firebug Command Editor

单击控制台面板右侧的小箭头即可使用

Command Editor toggle button

Firefox DevTools与Firebug的命令编辑器Scratchpad具有类似的功能:

enter image description here

此工具可通过Firefox菜单>获得。 开发人员> Scratchpad 或按 Shift + F4

答案 1 :(得分:0)

MDN有一些关于Outputting text to the console的例子。

最简单的例子是: console.log("Hello World!");哪个应该出现在Firefox控制台中。 (如果同时使用Firebug可能会出现问题)