0

我正在使用 p:editor 作为输入:

<p:editor id="editor" value="#{blogUIBean.blogEdit.blogIn}" required="true" style="width:500px"/>

我将此输入显示为:

 <h:outputText value="#{blogUIBean.selectedBlog.blogIn}" style="line-height:150%;margin-left:30px;background-color:#e1ecf0;" /> 

但它显示时选择了编辑器选项,例如;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; line-height: 18px; background-color: rgb(255, 255, 255);">Projenin fikir babası olan Ekmek Sanayi İşverenler Sendikası, sundukları projenin büyük bir ilgi ile karşılandığını ve 

为什么会发生这种情况,我该如何禁用这些?

4

1 回答 1

0

使用如下属性escape

<h:outputText value="#{blogUIBean.selectedBlog.blogIn}" escape="false" style="line-height:150%;margin-left:30px; background-color:#e1ecf0;" />

逃脱

指示必须对 HTML 和 XML 标记中敏感的字符进行转义的标志。默认情况下,此标志设置为“true”。

于 2013-11-20T17:27:57.940 回答