Jquery只对para中的某个单词进行样式化

时间:2010-08-01 06:05:22

标签: javascript jquery

我想从我的动态div

中仅设置某个单词的样式

说,

<div id="info">{$info}</div> prints

<p>here you can get info about somnething. if you want more info about something then click here....</p>

我只想要将'info'

这个词设为风格

如何使用jQuery实现这一目标?

感谢。

1 个答案:

答案 0 :(得分:0)

不要使用jQuery为HTML添加样式。您应该生成适当的HTML,然后使用CSS样式。


但如果您仍想这样做:

$("p").html( $("p").text().replace(/word/, "<span class='my-word'>word</span>") );

在CSS中:

.my-word { color: red; }