<ul class="clear">
<c:forEach var="item" items="${slotSite }">
<li class="${ item.flat eq code ? 'active': '' }">
<c:choose>
<c:when test="${item.flat eq 'bbin' }">
<c:choose>
<c:when test="${!empty webUser}">
<a
onclick="winOpen('${ctx}/forwardGame?gameType=bbin&pageSite=game',window.screen.width,window.screen.height,0,0,'game','bbin');return false;"
href="javascript:void(0);" target="_blank" class="block">
</c:when>
<c:otherwise>
<a href="javascript:void(0);"
onclick="alert('您尚未登录,请先登录再进行游戏')" class="block">
</c:otherwise>
</c:choose>BBIN电游</a>
</c:when>
***<c:when test="${item.flat eq 'ag'}">***
<c:choose>
<c:when test="${!empty webUser}">
<a
onclick="winOpen('${ctx}/forwardGame?gameType=ag&agGameType=2',window.screen.width,window.screen.height,0,0,'game','ag');return false;"
href="javascript:void(0);" class="block" target="_blank">
</c:when>
<c:otherwise>
<a href="javascript:void(0);"
onclick="alert('您尚未登录,请先登录再进行游戏')" class="block">
</c:otherwise>
</c:choose>AG电游</a>
</c:when>
<c:otherwise>
<a href="${ctx}/${item.flatUrl}" class="block">${item.flatName }</a>
</c:otherwise>
</c:choose>
</li>
</c:forEach>
</ul>
里面的<c:otherwise></c:choose></c:forEach> <c:when test="${item.flat eq 'bbin' }">啥意思?
JSTL語法
這是後端模板引擎所解析的程式碼,屬於JSTL。不屬於HTML範疇,在後端處理頁面是,會依照這些程式碼進行渲染,之後這些程式碼會消失,輸出到前端會沒有的。
雷雷
JSTL,寫在jsp裡面的,可以參考教學
和when 搭配,用於多種情況的不同處理方法
遍歷變量,一般這樣的情況,表示後台傳的是一個陣列物件
JSTL標籤,後端返回頁面時,會將資料帶至前端頁面上,展示在對應位置。
頁面檔案是不是有