基于bootstrap的表格头固定jquery插件
源码介绍
jquery.decapitate.js是一款基于bootstrap的表格头固定jquery插件。该jquery插件可以在页面向下滚动时,将表格头固定在视口的顶部。 在页面中引入jquery、bootstrap-affix.js和jquery.decapitate.js文件。 该插件的原理是将原来表格的 在经过插件初始化之后,表格的结构变为下面的样子: 在页面DOM元素加载完毕之后,可以通过下面的方法来初始化该jquery表格固定插件。 jquery.decapitate.js表格头固定插件的github地址为:https://github.com/claymation/jquery-decapitate简要教程
使用方法
<script src="path/to/js/jquery.min.js"></script>
<script src="path/to/js/bootstrap-affix.js"></script>
<script src="path/to/js/jquery.decapitate.js"></script>
HTML结构
thead
元素分离出来,将它们移动到新的表格中。初始的表格结构如下:
<table id="foo">
<caption></caption>
<thead>
<tr>...</tr>
</thead>
<tbody>
<tr>...</tr>
</tbody>
</table>
<div id="foo-wrapper" class="decap-body-wrapper">
<div class="decap-head-wrapper">
<table class="decap-head">
<caption>
<thead>
<tr>...</tr>
</thead>
</table>
</div>
<table id="foo" class="decap-body">
<tbody>
<tr>...</tr>
</tbody>
</table>
</div>
初始化插件
$(document).ready(function() {
$('table').decapitate();
});
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 基于bootstrap的表格头固定jquery插件
发表评论 取消回复