标签: jquery css
假设我有:
<span id="spanny"><strong>some default text</strong></span>
我得到:一些默认文字
然后我打电话给:
$("#spanny").text("<strong>new text</strong>");
我明白了:
<strong>new text</strong>
我想要的是什么:
新文字
如何设置文本样式以获得STRONG attr?
答案 0 :(得分:8)
使用html代替text:
html
text
$("#spanny").html("<strong>new text</strong>");
html用于设置HTML内容,而text将转义字符串。