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.
假设我有:
<span id="spanny"><strong>some default text</strong></span>
我得到:一些默认文本
然后我打电话:
$("#spanny").text("<strong>new text</strong>");
我得到:
<strong>new text</strong>
我想要什么:
新文本
如何设置文本样式以具有 STRONG attr?
使用html代替text:
html
text
$("#spanny").html("<strong>new text</strong>");
html用于设置 HTML 内容,而text将转义字符串。