当有更多数据可用时,我正在使用jquery.freezeheader.js来冻结表的标题。我正在实现我想要做的事情。但是滚动条正在走出桌子。如果表格中没有数据可用,它似乎很糟糕。
所以我想做的是,我需要在表格中找到滚动条
js:
---------
$(document).ready(function() {
$("#fixHeader").freezeHeader({ 'height': '450px' });
});
<html>
<head>
<script type="text/javascript" src="${pageContext.servletContext.contextPath}/resources/js/freezeheader/jquery.freezeheader.js"></script>
</head>
<body>
<table id="fixHeader">
<tr>
<thead>
<th>S.No</th>
<th>Student Name</th>
<th>Student Father Name</th>
</thead>
</tr>
<tbody>
<tr>
<td>1</td>
<td>Varun</td>
<td>Narayana</td>
</tr>
<tr>
<td>2</td>
<td>harika</td>
<td>Nagendrudu</td>
</tr>
<tr>
<td>3</td>
<td>Aravind</td>
<td>venu</td>
</tr>
</tbody>
</table>
</body>
</html>
答案 0 :(得分:0)
你的html代码fixHeader
中的opps是你的表的id,在你的js中你按类名申请freezheader,但是不能通过
$(document).ready(function() {
$("#fixHeader").freezeHeader({ 'height': '450px' });
});
请评论是否有任何问题:)一切顺利