我有一个属性字段,如
<s:property value="%{dp.pL[#status.index].val}" escape="false" />
如果属性的值大于1,我想将文本设置为红色,如果它不是正常的。
我尝试了以下代码
<td width="60px" class="class1">
<s:if test="%{dp.pL[#status.index].val}" escape="false" ">
<span class = "red">
<s:property value="%{dp.pL[#status.index].val}" escape="false" />
</span>
</s:if>
//else just the property value
</td>
但这是失败的 任何线索?