您好,登錄后才能下訂單哦!
項目中設計的報表table設計的列數相對過多,當拖動下方的滾動條時無法對應表頭所對應的列,因此在網上搜索了好一段日子,最后在網上找到了一些參考資料,然后總結歸納出兼容行列合并的固定表頭demo。
多瀏覽器沒有做太多測試,但是在ie9、火狐、360瀏覽器中已測試通過。
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>固定table表頭</title>
<style type="text/css">
.div1All{
position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px
}
.divHeaderID{
margin-right: auto;
margin-left: auto;
overflow: hidden;
bgcolor: blue;
}
.divContentID{
position: absolute;
left: 0px;
top: 30.5px;
bottom: 0px;
right: 0px;
overflow: scroll
}
</style>
</head>
<body>
<div class="div1All">
<div class="divHeaderID">
<table border="1" cellspacing="0">
<Tr >
<Th width="100px">Header A</Th>
<Th width="100px">Header B</Th>
<Th width="100px">Header C</Th>
<Th width="100px">Header D</Th>
<Th width="100px">Header E</Th>
<Th width="100px">Header F</Th>
</Tr>
</table>
</div>
<div class="divContentID">
<table border="1" cellspacing="0" >
<c:forEach begin="1" end="100" varStatus="index">
<Tr>
<Td width="100px">${index.index}</Td>
<Td width="100px">B</Td>
<Td width="100px">C</Td>
<Td width="100px">D</Td>
<Td width="100px">E</Td>
<Td width="100px">F</Td>
</Tr>
</c:forEach>
</table>
</div>
</div>
</body>
</html>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。