您好,登錄后才能下訂單哦!
這篇文章主要介紹“JSTL中怎么利用list.size()處理IP地址”,在日常操作中,相信很多人在JSTL中怎么利用list.size()處理IP地址問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”JSTL中怎么利用list.size()處理IP地址”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
得到list.size()
Java代碼
${fn:length(listComment)} ${fn:length(listComment)}
處理IP地址
Java代碼
<c:forTokens var="ip" items="${comment.ip}" delims="." begin="0" end="2">${ip}.</c:forTokens>* <c:forTokens var="ip" items="${comment.ip}" delims="." begin="0" end="2">${ip}.</c:forTokens>*
JSTL標簽顯示指定長度字符串
Java代碼
<c:set var="log.logTitle" value="做一個截取字符串長度的測試" <c:choose> <c:when test="${fn:length(log.logTitle) > 10}"> <c:out value="${fn:substring(log.logTitle, 0, 10)}......" /> </c:when> <c:otherwise> <c:out value="${log.logTitle}" /> </c:otherwise> </c:choose> <c:set var="log.logTitle" value="做一個截取字符串長度的測試" <c:choose> <c:when test="${fn:length(log.logTitle) > 10}"> <c:out value="${fn:substring(log.logTitle, 0, 10)}......" /> </c:when> <c:otherwise> <c:out value="${log.logTitle}" /> </c:otherwise> </c:choose>
截取時間戳
Java代碼
${fn:substring(comment.time,0,19)} ${fn:substring(comment.time,0,19)}
自動關閉模態窗口
Java代碼
<c:if test="${success=='ok'}" > <script type="text/javascript"> alert("評論發表成功"); parent.parent.location.reload(); </script> </c:if> <c:if test="${success=='ok'}" > <script type="text/javascript"> alert("評論發表成功"); parent.parent.location.reload(); </script> </c:if>
JSTL中varStatus和 var 屬性一樣,varStatus用于創建限定了作用域的變量。不過,由varStuts屬性命名的變量并不存儲當前索引值或當前元素,而是賦予 javax.servlet.jsp.jstl.core.LoopTagStatus 類的實例。該類定義了一組特性,它們描述了迭代的當前狀態,下面列出了這些特性:
Java代碼
特性 Getter 描述
current getCurrent() 當前這次迭代的(集合中的)項
index getIndex() 當前這次迭代從 0 開始的迭代索引
count getCount() 當前這次迭代從 1 開始的迭代計數
first isFirst() 用來表明當前這輪迭代是否為***次迭代的標志
last isLast() 用來表明當前這輪迭代是否為***一次迭代的標志
begin getBegin() begin 屬性值
end getEnd() end 屬性值
step getStep() step 屬性值
<c:forEach items="${listZonenews}" var="zonenews" varStatus="s">
${s.count}. ${zonenews.title }
</c:forEach>
到此,關于“JSTL中怎么利用list.size()處理IP地址”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。