< ページ移動: 1 2 >
Struts JSP<logic:equal name="hoge1" property="flg1" value="true"><tr height="30"></logic:equal><logic:notEqual name="hoge1" property="flg1" value="true"><tr height="50"></logic:notEqual><td><table><tr><td>hogehoge1</td></tr><logic:notEqual name="hoge1" property="flg1" value="true"><tr><td>hogehoge2</td></tr></logic:notEqual></table></td></tr>
JSF XHTML<c:if test="#{form.flg1}"><tr height="30"></c:if><c:if test="#{!form.flg1}"><tr height="50"></c:if><td><table><tr><td>hogehoge1</td></tr><c:if test="#{!form.flg1}"><tr><td>hogehoge2</td></tr></c:if></table></td></tr>
Errir Traced[line: 323] The element type "tr" must be terminated by the matching end-tag "</tr>".
JSF XHTML<c:if test="#{form.flg1}"><tr height="30"><td><table><tr><td>hogehoge1</td></tr></table></td></tr></c:if><c:if test="#{!form.flg1}"><tr height="50"><td><table><tr><td>hogehoge1</td></tr><tr><td>hogehoge2</td></tr></table></td></tr></c:if>