首页 > 代码库 > 在jsp页面中使用jstl标签
在jsp页面中使用jstl标签
第一步:引入标签库
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%>
第二步:使用jstl标签的demo,jsp页面内容如下:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ page import="com.fz.bean.Student"%> <%@ page import="java.util.*"%> <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Bootstrap 实例</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="http://cdn.static.runoob.com/libs/jquery/2.1.1/jquery.min.js"></script> <script src="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <h1 align="center"> <b>*******</b> </h1> <div class="container"> <div class="row clearfix"> <div class="col-md-12 column"> <table class="table"> <thead> <tr> <th>编号</th> <th>姓名</th> </tr> </thead> <tbody> <c:forEach items="${listStudent}" var="student"> <tr> <td>${student.id }</td> <td>${student.name }</td> </tr> </c:forEach> </tbody> </table> </div> </div> </div> </body> </html>
在jsp页面中使用jstl标签
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。