servlet中可以获取数据,但jsp不显示
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8" import="java.util.*"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>部门列表</title>
<link rel="stylesheet" type="text/css" href="../css/reset.css"/>
<link rel="stylesheet" type="text/css" href="../css/common.css"/>
<link rel="stylesheet" type="text/css" href="../css/thems.css">
<script type="text/javascript" src="../js/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
$(function(){
//自适应屏幕宽度
window.onresize=function(){ location=location };
var main_h = $(window).height();
$('.hy_list').css('height',main_h-45+'px');
var search_w = $(window).width()-40;
$('.search').css('width',search_w+'px');
//$('.list_hy').css('width',search_w+'px');
});
</script>
<!--框架高度设置-->
</head>
<body>
<div id="right_ctn">
<div class="right_m">
<div class="hy_list">
<div class="box_t">
<span class="name">部门列表</span>
</div>
<div class="space_hx"> </div>
<!--列表-->
<table cellpadding="0" cellspacing="0" class="list_hy">
<tr>
<th scope="col">部门名称</th>
<th scope="col">部门地址</th>
<th scope="col">操作</th>
</tr>
<c:forEach items="${LIST}" var="dep">
<tr>
<td>${dep.name}</td>
<td>${dep.address}</td>
<td>
<a href="add.html" class="btn">编辑</a>
<a href="" class="btn">删除</a>
</td>
</tr>
</c:forEach>
</table>
<!--列表-->
<!--右边底部-->
<div class="r_foot">
<div class="r_foot_m">
<a href="add.html" class="btn">添加</a>
</div>
</div>
<!--右边底部-->
</div>
<!--会议列表-->
</div>
</div>
</body>
</html>
23
收起
正在回答 回答被采纳积分+1
2回答
4. SSM到Spring Boot入门与综合实战
- 参与学习 人
- 提交作业 323 份
- 解答问题 8263 个
本阶段将带你学习主流框架SSM,以及SpringBoot ,打通成为Java工程师的最后一公里!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星