更正:${srb.status} -> ${otherBean.status} 

解决方案 »

  1.   

    用<logic:equal>标签判断显示啊.如:
    <logic:iterate   id="otherBean"   name="formForm"   property="list">
      <logic:equal name="otherBean" property="status" value="ok">
        好
      </logic:equal>
    </logic:iterate> 
      

  2.   

    把${otherBean.status}换成 <bean:write name="otherBean" property="status"/>
      

  3.   

    ${srb.status=='ok'?'好':''} 
      

  4.   

    谢谢 各位,搞定了。我觉得struts里的表情id,name,property,type,value这些名字起的很别扭!有时候很容易混!