在 HTML 文本区域中设置特殊文本的格式
我正在开发一个用于 SQL 的 Web 编辑器,我希望能够在用户键入时使用与其他文本不同的文本(选择、创建、来自)来设置特殊 SQL 文本的样式。 这在 HTML 中可能吗? 我可以使用第三方库/插件吗?
I am developing a web editor for SQL, I would like to be able to style special SQL text with in text (select, create, from) differently from other texts, as a user types.
Is this possible in HTML?
Is there a third party libary/plugin I can use for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试 EditErea,它内置了 SQL 高亮支持。
Try EditErea, it has built-it SQL highlighting support.
文本区域内的格式充其量是最少的。您可以尝试 Stack Overflow 使用的方法,即让用户在文本区域中输入内容,然后显示另一个带有输入格式的框。这是使用 Google Prettify 在 SO 完成的。这包括 SQL 格式化以及自动检测和格式化的其他语言列表。
Formatting inside a textarea is minimal at best. You might try the approach that Stack Overflow uses, which is to let your user input in a textarea and then display another box with the input formatted. This is done at SO using Google Prettify. This includes SQL formatting as well as a list of other languages, detected and formatted automatically.