是否可以使用 JavaScript 在 html 文本区域中创建对选项卡按钮的支持?
我讨厌当我尝试在文本区域中编辑 html 时,因为它无法识别选项卡按钮,所以我无法缩进我的代码。那么是否可以用 html 生成对文本区域的选项卡支持?是否可以使用 JavaScript 创建对选项卡按钮的支持?
I hate when I try to edit html in textarea, because it doesn't recognize tab button, so I cannot indent my code. So is it possible to generate tab support to textareas with html? And is it possible to create support for tab button with JavaScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试根据 Tab 键代码检查
keyUp
或keyDown
事件中的键代码:11
。Try to check the key code in
keyUp
orkeyDown
events against the tab key code:11
.这是一个很好地解释了该过程的教程。
http://ajaxian.com/archives/handling-tabs-in-textareas
Here's a tutorial that explains the process very well.
http://ajaxian.com/archives/handling-tabs-in-textareas