jsp el表达式,for循环

  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>  
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>  
  3. <%  
  4.     List list = new ArrayList();  
  5.     for (int i = 0; i < 10; i++) {  
  6.         list.add(i);  
  7.     }  
  8.     session.setAttribute("list", list);  
  9. %>  
  10.   
  11. "-//W3C//DTD HTML 4.01 Transitional//EN">  
  12.   
  13.     
  14.       
  15.     My JSP <span class="string" style="color:#0000FF;">'index.jsp'</span> starting page  
  16.     "pragma" content="no-cache">  
  17.     "cache-control" content="no-cache">  
  18.     "expires" content="0">      
  19.     "text/css">  
  20.     tr.foreach_tr1{background-color:#D7E9FD;color:black;}  
  21.     tr.foreach_tr2{background-color:#A7DBFF; color:black ;}  
  22.       
  23.     
  24.     
  25.     
  26.     "1" width="200" cellpadding="0" cellspacing="0">  
  27.         "center"  class="first_tr">  
  28.               
  29.                 test  
  30.               
  31.           
  32.         "${list}" varStatus="i" var="item" >  
  33.             if test="${i.index % 2 == 0}" >  
  34.                 "center" class="foreach_tr1">  
  35.             if>  
  36.             if test="${i.index % 2 == 1}">  
  37.                 "center" class="foreach_tr2">  
  38.             if>  
  39.               
  40.                 

    ${item}

      
  41.               
  42.           
  43.           
  44.       
  45.     
  46.  

刚刚忘记在文件头上加:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>  
结果显示就没有循环出来了...

你可能感兴趣的:(jsp el表达式,for循环)