struts2標籤與jstl標籤的混合使用

2021-08-26 10:51:05 字數 622 閱讀 5711

1.以前一直使用jstl標籤,後來也開始使用struts2的一些標籤,畢竟struts2的有些標籤使用起來還是比較方便

專案中常常會出現struts2標籤和jstl標籤混和用的情況,比如在自定義標籤或者在迴圈標籤等

1.在jstl中使用struts2

jstl:

el:$

struts2:

通過struts2標籤取jstl標籤的變數時,如果有設定scope,可以從scope中取值

如果沒有就需要用#attr來取值

2.從jstl標籤中獲取值

3.在struts2標籤中使用jstl

struts2:

el:$

jstl:

4.從struts2標籤中取值

struts2:

el:$

jstl:

struts2:

el:$

jstl:

JSTL與Struts2標籤的使用對比

1.條件標籤 jstl 1 c if test 2 c choose 3 c when test 4 font color blue 5c when 6 c when test 7 font color red 8c when 9 c otherwise 10 font color green 11...

JSTL與Struts2標籤的使用對比

1.條件標籤 jstl 1 2 3 4 5 6 18 7 8 9 10 11 12 13 struts2 1 2 3 4 18 5 6 7 8 2.迭代標籤 jstl 1 2 3 4 5 6 7 8 struts2 1 2 3 4 5 6 7 8 3.url相關標籤 jstl 1 2 3 4 5 6...

struts2學習複習標籤(select 標籤)

struts2 select標籤的用法 struts2的select標籤中,常用的有以下幾個屬性 1 struts2中的select 標籤中,必須設定的屬性只有乙個,即是list。2 select標籤的list中必須有值,不然會報錯。如果沒有值,可以加上headerkey,headervalue,這...