我想从我的动态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实现这一目标?
感谢。
答案 0 :(得分:0)
不要使用jQuery为HTML添加样式。您应该生成适当的HTML,然后使用CSS样式。
但如果您仍想这样做:
$("p").html( $("p").text().replace(/word/, "<span class='my-word'>word</span>") );
在CSS中:
.my-word { color: red; }