0

我正在开发一个网页,我在其中动态插入&#174注册商标的实体®,但不幸的是,它出现®在页面中,我期望的是注册商标。

我在用

$(selctor).text("&#174");

请帮助我。提前感谢您的帮助。

4

1 回答 1

1

正如您所说,解决方案是$(selector).html('&#174')..

jQuery 文档提供了一个示例说明为什么会这样:

http://api.jquery.com/text/

The code $( "div.demo-container" ).text( "<p>This is a test.</p>" ); will produce the following DOM output:

<div class="demo-container">
&lt;p&gt;This is a test.&lt;/p&gt;
</div>
于 2013-10-01T10:23:47.507 回答