jsp前端语言
Posted 0123wtdd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp前端语言相关的知识,希望对你有一定的参考价值。
jstl
jar存放位置
jar包配置方式
迭代器:迭代输出。
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:forEach items="${lis}" var="lis"> <tr align="center"> <th>${lis.id}</th> <th>${lis.lastName}</th> <th>${lis.email}</th> <th>${lis.gender==0?"女":"男"}</th> <th>${lis.department.departmentName}</th> <th> <a href="#">Edit</a> <a href="#">Delete</a> </th> </tr> </c:forEach>
另一种
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
JQuery
描写页面动态脚本用的
以上是关于jsp前端语言的主要内容,如果未能解决你的问题,请参考以下文章