什么是<s:property value =“Content”escapehtml =“false”>的Struts 1.3标签

时间:2015-06-04 10:23:14

标签: java html struts2 struts struts-1

我想要<s:property value="Content" escapeHtml="false" />

的等效Struts 1.3标记

目前我正在尝试<bean:write name="MyForm" property="Content" filter="false" ></bean:write>

之类的内容

我想隐藏/删除“我的内容”中的HTML标记 - 我正在使用来自CKEditor的数据,这是HTML标记的组合。

2 个答案:

答案 0 :(得分:0)

这帮助我从CkEditor获取转义字符获取数据函数Bean:write

答案 1 :(得分:0)

使用bean:write标记,您可以从动作表单属性中输出值。如果要使用范围变量,可以使用JSP EL或JSTL c:out

${MyForm.Content} or    
<c:out value="${MyForm.Content}" escapeXml="false"/>