jQuery固定表头

来源:互联网 发布:如何上传淘宝宝贝图片 编辑:程序博客网 时间:2024/06/01 13:23

$("#Table").stickyTableHeaders({scrollableArea: $('#scrollableArea')});

<div id="scrollableArea" style="max-height: 150px; _height:expression(this.scrollHeight > 150 ? '150px' : 'auto'); overflow-y:scroll;">

表头放在<thead>标签下

jQuery插件   https://github.com/jmosbech/StickyTableHeaders


0 0