如何在 <b> jsf 标记中添加 html 粗体

  • 本文关键字:粗体 添加 html jsf jsf
  • 更新时间 :
  • 英文 :


我在属性文件中的以下属性中进行了定义。

<b>Profile 1:</b> <br> Only the market(s) selected above

我在bean profile1 中设置了这个

<h:outputText style="font-size:12px;" value="#{bean.profile1}" />

但结果是

<b>Profile 1:</b> <br> Only the market(s) selected above

请任何人帮助如何在属性文件中使用break和粗体

h:outputText:中使用escape=false

<h:outputText style="font-size:12px;" value="#{bean.profile1}" escape="false"/>

否则,在jsf处理过程中会转义所有特殊字符。

相关内容

  • 没有找到相关文章

最新更新