Command Line
The small Command Line supports auto-completion using the Tab key. For example, typing 'w' followed by Tab completes it into 'window'. Cycling through the possible completions is done with the arrow keys. Since Firebug 1.6 there's also an popup with suggestions shown for the entered part of a command, unless disabled in the Console options.
In general the Command Line evaluates whatever expression you type in. It can be a single variable or a complete JavaScript program. The evaluation is done by passing the Command Line text into the page, calling eval() on it and passing back the result.
The Command Line also supports the Command Line API, a set of special purpose commands.
In Firebug 1.6 the Command Line was made available to all panels (called Command Line Popup) and can be accessed through the Command Line Popup Button (
). To see the output of the commands you have to drag the resizer above the Command Line Popup.
Contents[hide] |
[edit]Features
[edit]Auto-Completion
To support the user analysing elements and writing code the small Command Line integrates an auto-completion for the commands you are typing. Therefore after starting to type a command you simply have to press Tab and Firebug is completing the command. It is also possible to complete a value with Enter or the → arrow key or by clicking an item inside the Completion List Popup. If there are several commands starting with the same phrase like "getElem" you can use the ↑ and ↓ arrow keys before pressing Tab to alphabetically switch through all available commands. Also the global variables, which you defined in your script, are used. Furthermore the auto-completion is case-insensitive, which allows for rapid typing. E.g. entering "document.gete" offers "document.getElementById", "document.getElementsByClassName", "document.getElementsByName", "document.getElementsByTagName" and "document.getElementsByTagNameNS".
[edit]Clipboard functionality
The entered script can be copied as bookmarklet via the menu of the Command Editor.
[edit]Shortcuts for inspected elements
The Command Line and the Command Editor offer you the possibility to easily access elements inside the DOM similar to the sizzle selector library integrated in the jQuery Framework.
[edit]Commands
There are different commands available providing a wide variaty of functionality. For a detailed description of the these commands see the Command Line API.
[edit]Inspect object in other panel
How you inspect elements using the console is described above. Besides that it's also possible to inspect them in the most appropriate panel by hitting Shift+Enter instead of just Enter. The console output also often contains links to other panels like the DOM Panel.
Inside the Console Panel the Command Line has some additional features.
[edit]Command History
The Command Line saves all executed commands in a history. You can go through that history by simply pressing ↑ and ↓. The complete history of all the executed commands is available via
.
[edit]Smart code pasting
When you paste a multi-line script to the Command Line it automatically switches to the Command Editor, so that the line breaks are preserved and you can edit your script as you would do inside an editor.
本文详细介绍了Firebug命令行的功能特性,包括自动补全、剪贴板功能、快捷方式、命令历史等功能,并提供了如何使用这些功能来提高网页调试效率的方法。



3551

被折叠的 条评论
为什么被折叠?



