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.
我正在尝试在 outputText 中设置 1 ® 2:
<h:outputText value="1<sup>®<sup/>2" escape="false"/>
什么是不正确的?我2输入大写。
2
您可以选择以下之一
在您最初的提案中,您/应该在sup
/
sup
<h:outputText value="1<sup>®</sup>2" escape="false"/>
您也可以sup完全删除(但比您的(R)不会小)
<h:outputText value="1®2" escape="false"/>
最后可以不用转义直接使用
<h:outputText value="1®2"/>