Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 on change 事件或鼠标离开事件之后在一个 html 文本框中显示一些红色的文本,其余的为黑色。这可能吗?如果是的话怎么办?
我认为您无法具体实现您的要求。您可以将 CSS 应用于文本框的默认值,但要仅更改其中某些单词的颜色,<span>您需要使用<span>当然,但不应用CSS)。
<span>
如果您很高兴在稍后的评论中暗示将文本包含在其他元素中,那么使用非常简单的 CSS 使用span<p>或<div>元素完全可以做到这一点,如下面的 jsFiddle 所示:
<p>
<div>
http://jsfiddle.net/2DpSX/
最后我可以通过创建一个可编辑的<div>
http://jsfiddle.net/EP2dc/
谢谢大家的指导。