用jQuery在textarea中着色
我需要对文本区域中的部分文本进行着色。假设第一行是红色,第二行是蓝色。如何做到这一点? (jQuery)
i need to colorize part of the text in textarea. Let's say first line in red, second in blue. How to do this? (jQuery)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定 textarea 是否可以。而是使用 div contentEditable。
查看类似问题
在文本区域内渲染 HTML
如何设置 HTML textarea 元素的某些内部文本的背景颜色?< /a>
I'm not sure if it possible with textarea. Instead use div contentEditable.
See similar questions
Rendering HTML inside textarea
How to set background color for some inner text of HTML textarea element?
您无法轻松设置文本区域内容的样式,但是可以使用简化的富文本编辑器来完成此操作。
像RTE这样的东西: http:// /batiste.dosimple.ch/blog/posts/2007-09-11-1/rich-text-editor-jquery.html
或 CLEditor: http://premiumsoftware.net/cleditor/ 将是一个很好的起点。
You can't easily style the contents of a text area, you can however use a simplified rich text editor to accomplish this.
something like RTE: http://batiste.dosimple.ch/blog/posts/2007-09-11-1/rich-text-editor-jquery.html
or CLEditor: http://premiumsoftware.net/cleditor/ would be a good starting point for this.