Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在需要编写函数的 chrome 控制台中测试几个 javascript 示例。问题是我无法使用 TAB 键在函数内将行向右移动 2 个空格,例如
function abc(){ //Need to use tab to properly format };
任何人请。
参考官方文档是不可能的。
您将不得不使用空格,在其他编辑器中编写代码然后复制它,或者使用 Firefox ...
为了好玩:Spaces VS Tabs
这是正确的行为,JavaScript 在没有制表符和回车的情况下同样有效。