Firebug在其控制台工具中具有多行功能。有没有办法在Safari / Chrome中使用调试工具获得此功能?
答案 0 :(得分:132)
Windows上的Shift-Enter允许多行输入,其中Option-Enter适用于Mac。
一个功能更全面的编辑器正在开发中。
答案 1 :(得分:15)
我推荐这个:
debugger;
并点击 Enter
Evaluate in console
答案 2 :(得分:12)
答案 3 :(得分:10)
答案 4 :(得分:6)
对于Google Chrome
,您可以Sources >> Snippets >> + New Snippet
中的Developer Console
。
在您编写multi-line code
后,您可以使用button
上提到的 Ctrl + Enter
或button
执行此操作。
这就像一个文本编辑器,其中包含keyboard shortcuts
的主机,您可以在Settings >> Shortcuts
Text Editor
下找到
祝你好运。
答案 5 :(得分:5)
Shift + Enter似乎适用于Chrome浏览器。我使用ubuntu 12.04作为我的操作系统。感谢Bester先生和Sam Dutton先生的意见。
答案 6 :(得分:2)
这很简单...在多行之间放置分号,它将在控制台中运行。
例如
如果您有像这样的HTML
<div id="test">This is a test statement</div>
您可以在控制台中粘贴以下内容
var ourTest = document.getElementById('test'); alert(ourTest.innerHTML);
我希望它有所帮助。
答案 7 :(得分:0)
Chrome https://chrome.google.com/webstore/detail/bigconsole/klommbdmeefgobphaflhmnieheipjajm
有很酷的扩展功能它只是添加另一个名为BigConsole的选项卡,它允许多行代码执行
答案 8 :(得分:-1)
尝试使用记事本(或其他东西),然后复制/粘贴到控制台,对我有用!!!!