我在托管bean中有这个方法。
public String instructionsText() {
String text = "Whether your web site needs a simple 'face lift' <br /> "+
" major 'reconstructive surgery,' the staff of"
return text;
}
在我的jsf页面中:
<img src="http://icons.iconarchive.com/icons/aroche/delta/32/Help-icon.png" style="float:right" onclick="PF('dlgi').show();" alt="help" />
我想在<br />
的地方使用字符串文本换行。但我尝试了不同的方式
(\ n,\ r \ n,\ r \ n,<br>
,<br />
)。没有任何效果。非常感谢帮助。谢谢。
答案 0 :(得分:2)
escape
有一个h:outputText
属性,一个布尔标志,指示是否要转义HTML内容。
默认情况下,该值为true
。将值设置为escape="false"
您可以找到文档参考HERE.