日期:2014-05-18 浏览次数:20757 次
function table_rowspan(table_id,colnum){
var table_firsttd = "";
var table_currenttd = "";
var table_SpanNum = 0;
var table_Obj = $(table_id + " tr td:nth-child(" +colnum + ")"); //nth-child colnum=1 第一列
table_Obj.each(function(i){
if(i>0){
$(this).css("color","#1E47BC");
}
if(i==0){
table_firsttd = $(this);
table_SpanNum = 1;
}else{
table_currenttd = $(this);
if(table_firsttd.text()==table_currenttd.text()){
table_SpanNum++;
table_currenttd.hide(); //remove();
table_firsttd.attr("rowSpan",table_SpanNum);
table_firsttd.css("background-color","#E8F2FF");
table_firsttd.css("color","#F7A045");
}else{
table_firsttd = $(this);
table_SpanNum = 1;
}
}
});
}
var table_id="#showList";
var colnum=1;
var table_Obj = $(table_id + " tr td:nth-child(" +colnum + ")"); //nth-child colnum=1 第一列
table_Obj.each(function(i){
var rowSpan = $(this).attr("rowSpan");
if(rowSpan>1){
$(this).attr("rowSpan",1);
for(var i=1;i<rowSpan;i++){
$(this).appendTo(table_Obj);
}
}
});