jsp盡量不要寫java程式碼,那是很早以前JSP剛出來時的寫法,後來發現非常難以維護和修改,所以出現了現在的EL表達式 ${}這種類型。
上古時期寫法(java程式碼與html程式碼直接混合寫):
<body> <h1>购物车</h1> <table border="1"> <tr> <th>商品名称</th> <th>商品数量</th> </tr> <% Map<String,Integer> cart = (Map<String,Integer>)session.getAttribute("cart"); if(cart!=null && cart.size()>0){ for(Entry<String,Integer> en : cart.entrySet()){ %> <tr> <td><%=en.getKey() %></td> <td><%=en.getValue() %></td> </tr> <% } } %> </table> </body>
「現代寫法(JSTL標籤)
<table border="1"> <tr> <th>用户名</th> <th>当前遍历索引</th> <th>当前遍历计数</th> <th>是否是集合第一个元素</th> <th>是否是集合最后一个元素</th> </tr> <c:forEach items="${list}" var="name" varStatus="st" > <tr class="${st.index%2==0?"one":"two"}" > <td>${name}</td> <td>${st.index}</td> <td>${st.count}</td> <td>${st.first}</td> <td>${st.last}</td> </tr> </c:forEach> </table> <hr> <!-- 数数的功能--> <c:forEach begin="1" end="10" step="1" var="num" > ${num} </c:forEach>
以上是jsp怎麼寫的詳細內容。更多資訊請關注PHP中文網其他相關文章!