| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Struts2 if」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
 
1行目: 1行目:
==Struts2 ifタグ==
+
==[[Struts2 if]]タグ==
{{include_html banner_html, "!Struts"}}
+
{{include_html [[banner_html]], "!Struts"}}
  
 
条件分岐、if単体および、elseIf、else と併せて利用
 
条件分岐、if単体および、elseIf、else と併せて利用
18行目: 18行目:
 
|true  
 
|true  
 
|String  
 
|String  
|要素参照用ID. UIや、FORMタグ用。HTMLのid属性として利用される。
+
|要素参照用ID. UIや、FORMタグ用。[[HTML]]のid属性として利用される。
 
|-
 
|-
 
|test  
 
|test  
44行目: 44行目:
 
|true  
 
|true  
 
|String  
 
|String  
|要素参照用ID. UIや、FORMタグ用。HTMLのid属性として利用される。
+
|要素参照用ID. UIや、FORMタグ用。[[HTML]]のid属性として利用される。
 
|-
 
|-
 
|test  
 
|test  
70行目: 70行目:
 
|true  
 
|true  
 
|String  
 
|String  
|要素参照用ID. UIや、FORMタグ用。HTMLのid属性として利用される。
+
|要素参照用ID. UIや、FORMタグ用。[[HTML]]のid属性として利用される。
 
|-
 
|-
 
|}
 
|}
85行目: 85行目:
 
  </s:else>
 
  </s:else>
 
----
 
----
{{include_html banner_html, "!Struts"}}
+
{{include_html [[banner_html]], "!Struts"}}

2020年2月16日 (日) 04:32時点における最新版

Struts2 ifタグ

{{include_html banner_html, "!Struts"}}

条件分岐、if単体および、elseIf、else と併せて利用

if

パラメータ
タグ名 必須 デフォルト 評価 内容
id false true String 要素参照用ID. UIや、FORMタグ用。HTMLのid属性として利用される。
test true true Boolean タグの内容を表示するか決定する式。

elseIf

パラメータ
タグ名 必須 デフォルト 評価 内容
id false true String 要素参照用ID. UIや、FORMタグ用。HTMLのid属性として利用される。
test true true Boolean タグの内容を表示するか決定する式。

else

パラメータ
タグ名 必須 デフォルト 評価 内容
id false true String 要素参照用ID. UIや、FORMタグ用。HTMLのid属性として利用される。

使用例

<s:if test="%{false}">
    <div>Will Not Be Executed</div>
</s:if>
<s:elseif test="%{true}">
    <div>Will Be Executed</div>
</s:elseif>
<s:else>
    <div>Will Not Be Executed</div>
</s:else>

{{include_html banner_html, "!Struts"}}