基于浏览器的 IDE - 具有代码完成功能的文本区域可用吗?
最近我发现可以使用 JavaScript 在
是否有也支持自动完成的开源库? 我想为 HTML/CSS 模板制作一个简单的在线编辑器。
最好是可以扩展完成功能,这样我就可以添加自定义规则。
Recently I discovered it's possible to have syntax-highlighting in a <textarea>
using JavaScript.
Are there Open Source libraries which also support auto completion?
I'd like to make a simple online editor for HTML/CSS templates.
Preferably, the completion is can be extended, so I can add custom rules.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该查看有关基于 JavaScript 的代码编辑器的维基百科页面。它将 MDK 编辑器列为支持 html、css 和 javascript 自动完成的编辑器。您可以在此处查看演示。
You should check this wikipedia page on javascript based code editors. It lists the MDK-Editor as one that supports auto-completion for html, css and javascript. You can see a demo here.
CodeMirror 能够支持自动补全
CodeMirror has ability to support autocompletion
Mozilla Labs 有 Skywriter (该项目不再活跃),它是一个基于浏览器的IDE。我不知道它是否有代码完成(我找不到它)。
Mozilla Labs has Skywriter (This project is no longer active) which is a browser based IDE. I don't know if it has code completion (I couldn't find it) though.