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.
我想将 HTML <sup>®</sup>(即®)添加到<h:outputText>,但出现异常。
<sup>®</sup>
<h:outputText>
<h:outputText value="<<sup ®/>>" escape="false" />
什么是不正确的?
你根本不需要<h:outputText>。您可以在 JSF 页面中写下 HTML 普通香草。
例如
<p>#{bean.productName}<sup>®</sup></p>
您不能在 xhtml 代码中使用<符号>。你的价值不应该是这样的:
<
>
<h:outputText value="<sup>®<sup/>" escape="false"/>