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>
Code

 

另一种

<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>

 JQuery

描写页面动态脚本用的

 

以上是关于jsp前端语言的主要内容,如果未能解决你的问题,请参考以下文章

JSP是一种语言

JSP语法

JSP 语法

JSP开发中的基础语法

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

jsp表达式语言