本文介绍了如何更改textarea中的单个字符颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
请使用JQuery更改textarea中的单个字符的颜色。
Please i need to change color of a single character in textarea using JQuery.
推荐答案
可编辑div:
I changed the textarea by a content editable div:
<div contenteditable="true"></div>
div {width:98%;clear: both;font-size: 10pt;max-width:98%;height:250px;min-height:98%;
left:10px;right:10px;background-color:#fff;border:1px solid #1c578d;bottom:10px;top:10px;color:#1B4A90;overflow:auto;
display:inline;}
这篇关于如何更改textarea中的单个字符颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!