EL表达式

Posted 赵羴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EL表达式相关的知识,希望对你有一定的参考价值。

在jsp页面中不能通过${list.size}取列表长度,而是 
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> 

list的长度是:${fn:length(list)}
  1. 关键在于<c:forEach>的varStatus属性,具体代码如下:   
  2.   
  3. <table width="500" border="0" cellspacing="0" cellpadding="0">  
  4. <tr>  
  5.     <th>序号</th>  
  6.     <th>姓名</th>  
  7. </tr>  
  8. <c:forEach var="student" items="${ students}" varStatus="status">  
  9. <tr>  
  10.     <td>${ status.index + 1}</td>  
  11.     <td>${ student.name}</td>  
  12. </tr>  
  13. </c:forEach>  
  14. </table>  
  15.   
  16. 备注:status.index是从0开始的。

以上是关于EL表达式的主要内容,如果未能解决你的问题,请参考以下文章

jquery中使用el表达式的问题,求教

EL概述和EL运算符

EL表达式总结

JSTL和EL

EL表达式

jquery与EL表达式的$冲突