没有合适的资源?快使用搜索试试~ 我知道了~
A:使用JQuery UI插件,用DIV替换table,overflow-y:hidden达到滚动,让 thead绝对定位达到固定的目的,方法如下: 代码如下: (function($){ $.chromatable = { defaults: { width: “900px”, height: “300px”, scrolling: “yes” } }; $.fn.chromatable = function(options){ var options = $.extend({}, $.chromatable.defaults, options); return this.each(fun
资源推荐
资源详情
资源评论
基于基于jquery的表头固定的若干方法的表头固定的若干方法
A:使用JQuery UI插件,用DIV替换table,overflow-y:hidden达到滚动,让 thead绝对定位达到固定的目的,方法如下:
代码如下:
(function($){
$.chromatable = {
defaults: {
width: “900px”,
height: “300px”,
scrolling: “yes”
}
};
$.fn.chromatable = function(options){
var options = $.extend({}, $.chromatable.defaults, options);
return this.each(function(){
var $this = $(this);
var $uniqueID = $(this).attr(“ID”) + (“wrapper”);
$(this).css(‘width’, options.width).addClass(“_scrolling”);
$(this).wrap(‘<div class=”scrolling_outer”><div id=”‘+$uniqueID+'” class=”scrolling_inner”></div></div>’);
$(“.scrolling_outer”).css({‘position’:’relative’});
$(“#”+$uniqueID).css(
{‘border’:’1px solid #CCCCCC’,
‘overflow-x’:’hidden’,
‘overflow-y’:’auto’,
‘padding-right’:’17px’
});
$(“#”+$uniqueID).css(‘height’, options.height);
$(“#”+$uniqueID).css(‘width’, options.width);
$(this).before($(this).clone().attr(“id”, “”).addClass(“_thead”).css(
{‘width’ : ‘auto’,
‘display’ : ‘block’,
‘position’:’absolute’,
‘border’:’none’,
‘border-bottom’:’1px solid #CCC’,
‘top’:’1px’
}));
$(‘._thead’).children(‘tbody’).remove();
$(this).each(function( $this ){
if (options.width == “100%” || options.width == “auto”) {
$(“#”+$uniqueID).css({‘padding-right’:’0px’});
}
if (options.scrolling == “no”) {
$(“#”+$uniqueID).before(‘<a href=”#” class=”expander” style=”width:100%;”>Expand table</a>’);
$(“#”+$uniqueID).css({‘padding-right’:’0px’});
$(“.expander”).each(
function(int){
$(this).attr(“ID”, int);
$( this ).bind (“click”,function(){
$(“#”+$uniqueID).css({‘height’:’auto’});
$(“#”+$uniqueID+” ._thead”).remove();
$(this).remove();
});
});
$(“#”+$uniqueID).resizable({ handles: ‘s’ }).css(“overflow-y”, “hidden”);
}
});
$curr = $this.prev();
$(“thead:eq(0)>tr th”,this).each( function (i) {
$(“thead:eq(0)>tr th:eq(“+i+”)”, $curr).width( $(this).width());
});
if (options.width == “100%” || “auto”){
$(window).resize(function(){
resizer($this);
});
}
});
};
function resizer($this) {
$curr = $this.prev();
$(“thead:eq(0)>tr th”, $this).each( function (i) {
$(“thead:eq(0)>tr th:eq(“+i+”)”, $curr).width( $(this).width());
});
};
})(jQuery);
页面调用如下:
代码如下:
…
<script type=”text/javascript” src=”jquery-ui-min.js”></script>
<script>
$(function(){
$(“#yourTableID”).chromatable({
width: “900px”,
height: “400px”,
scrolling: “yes”
});
});
</script>
…
<table id=”yourTableID” width=”100%” border=”0″ cellspacing=”0″ cellpadding=”0″>
<thead>
<tr>
<th>Check out this header</th>
<th>Look here’s another one</th>
<th>Wow, look at me!</th>
</tr>
</thead>
<tbody>
<tr>
<td>Some content goes in here</td>
<td>Praesent vitae ligula nec orci pretium vestibulum</td>
<td>Maecenas tempus dictum libero</td>
</tr>
…
<tr>
<td>Quisque in wisi quis orci tincidunt fermentum</td>
<td>Mauris aliquet mattis metus</td>
<td>Etiam eu ante non leo egestas nonummy</td>
</tr>
</tbody>
</table>
此方法IE和FF的兼容性都很好,推荐。
B:利用css滤镜实现,但FF不支持微软的东西,不兼容。DOM如下:
代码如下:
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN”>
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
</HEAD>
<style type=”text/css”>
<!–
body,table, td, a {font:9pt;}
/*重点:固定行头样式*/
.scrollRowThead{position: relative; left:
expression(this.parentElement.parentElement.parentElement.parentElement.scrollLeft);
z-index:0;}
/*重点:固定表头样式*/
.scrollColThead {position: relative;top: expression(this.parentElement.parentElement.parentElement.scrollTop);z-index:2;
height:20px;}
/*行列交叉的地方*/
.scrollCR { z-index:3;}
/*div外框*/
.scrollDiv {height:200px;clear: both; border: 1px solid #EEEEEE;OVERFLOW: scroll;width: 500px; }
/*行头居中*/
.scrollColThead td,.scrollColThead th
{ text-align: center ;}
/*行头列头背景*/
.scrollRowThead,.scrollColThead td,.scrollColThead th
{background-color:EEEEEE; height:20px;}
/*表格的线*/
.scrolltable{
border-bottom:1px solid #CCCCCC; border-right:1px solid #CCCCCC; }
/*单元格的线等*/
.scrolltable td,.scrollTable th{
border-left: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; padding: 5px; }
–>
</style>
<BODY>
<!–<div class=”scrollDiv” id=”scrollDiv”>–>
<table border=”0″ cellpadding=”3″ cellspacing=”0″ width=”100%” class=”scrollTable”>
<tr class=”scrollColThead” >
<th class=”scrollRowThead scrollCR” > </th>
<th colspan=”2″>列头</th>
<th colspan=”2″>列头</th>
<th colspan=”2″>列头</th>
</tr>
<tr class=”scrollColThead” >
<th class=”scrollRowThead scrollCR” >h1</th>
<th class=”scrollRowThead scrollCR”>h2</th>
<th class=”scrollRowThead scrollCR”>h3</th>
<th class=”scrollRowThead scrollCR”>h4</th>
<th class=”scrollRowThead scrollCR”>h5</th>
<th class=”scrollRowThead scrollCR”>h6</th>
<th class=”scrollRowThead scrollCR”>h7</th>
</tr>
<tr>
<td class=”scrollRowThead” >
<input type=”checkbox” name=”checkbox” value=”checkbox”>
a</td>
<td>单元格2</td>
<td>单元格3</td>
<td>单元格4</td>
<td>单元格5</td>
<td>单元格6</td>
<td>单元格7</td>
</tr>
<tr>
<td class=”scrollRowThead” >
<input type=”checkbox” name=”checkbox2″ value=”checkbox”>
b</td>
<td>单元格2</td>
<td>单元格3</td>
<td>单元格4</td>
<td>单元格5</td>
<td>单元格6</td>
<td>单元格7</td>
</tr>
<tr>
<td nowrap class=”scrollRowThead” >
<input type=”checkbox” name=”checkbox3″ value=”checkbox”>
c</td>
<td nowrap>单元格2</td>
<td nowrap>单元格3</td>
<td nowrap>单元格4</td>
<td nowrap>单元格5</td>
<td nowrap>单元格6</td>
<td nowrap>单元格7</td>
</tr>
<tr>
<td class=”scrollRowThead” >
<input type=”checkbox” name=”checkbox4″ value=”checkbox”>
d</td>
剩余18页未读,继续阅读
资源评论
weixin_38674569
- 粉丝: 3
- 资源: 970
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 全球干旱数据集【自校准帕尔默干旱程度指数scPDSI】-190101-202312-0.5x0.5
- 基于Python实现的VAE(变分自编码器)训练算法源代码+使用说明
- 全球干旱数据集【标准化降水蒸发指数SPEI-12】-190101-202312-0.5x0.5
- C语言小游戏-五子棋-详细代码可运行
- 全球干旱数据集【标准化降水蒸发指数SPEI-03】-190101-202312-0.5x0.5
- spring boot aop记录修改前后的值demo
- 全球干旱数据集【标准化降水蒸发指数SPEI-01】-190101-202312-0.5x0.5
- ActiveReports
- vgbvdsbnjkbfnb
- effsefefeffsfwfse
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功