Struts s:property 标签的使用
?
1. <s:property value="%{'<li>刘庆</li>'}" />
?
会显示
<li>刘庆</li>
?
2. 我们要显示html 而不是转意思后的文本
?
<s:property value="stateText" escape="false" />
?
escape
innerHTML
就OK
?
Example 1 prints the result of myBean's getMyBeanProperty() method.Example 2 prints the result of myBean's getMyBeanProperty() method and if it is null, print 'a default value' instead.