jQuery的合并表格中相同文本的相鄰單元格的代碼
jQuery的合并表格中相同文本的相鄰單元格的代碼
ONE
已經(jīng)生成的數(shù)據(jù)表格大致內(nèi)容如下:
廣東深圳00028紅花油廣東深圳00028紅花油廣東深圳00028紅花油廣東廣州00027白花油廣東廣州00028紅花油廣東深圳00028紅花油廣東深圳00028紅花油廣東深圳00028紅花油廣東深圳00028紅花油
需要將前四列具有相同文本的相鄰單元格進(jìn)行自動(dòng)合并,合并后如下:
廣東深圳00028紅花油廣州00027白花油00028紅花油深圳
1、在html的.head中引入jQuery
2、添加合并單元格的函數(shù)
復(fù)制代碼 代碼如下:
//函數(shù)說(shuō)明:合并指定表格(表格id為_(kāi)w_table_id)指定列(列數(shù)為_(kāi)w_table_colnum)的相同文本的相鄰單元格
//參數(shù)說(shuō)明:_w_table_id 為需要進(jìn)行合并單元格的表格的id。如在HTMl中指定表格 id="data" ,此參數(shù)應(yīng)為 #data
//參數(shù)說(shuō)明:_w_table_colnum 為需要合并單元格的所在列。為數(shù)字,從最左邊第一列為1開(kāi)始算起。
function _w_table_rowspan(_w_table_id,_w_table_colnum){
_w_table_firsttd = "";
_w_table_currenttd = "";
_w_table_SpanNum = 0;
_w_table_Obj = $(_w_table_id + " tr td:nth-child(" + _w_table_colnum + ")");
_w_table_Obj.each(function(i){
if(i==0){
_w_table_firsttd = $(this);
_w_table_SpanNum = 1;
}else{
_w_table_currenttd = $(this);
if(_w_table_firsttd.text()==_w_table_currenttd.text()){
_w_table_SpanNum++;
_w_table_currenttd.hide(); //remove();
_w_table_firsttd.attr("rowSpan",_w_table_SpanNum);
}else{
_w_table_firsttd = $(this);
_w_table_SpanNum = 1;
}
}
});
}
//函數(shù)說(shuō)明:合并指定表格(表格id為_(kāi)w_table_id)指定行(行數(shù)為_(kāi)w_table_rownum)的相同文本的相鄰單元格
//參數(shù)說(shuō)明:_w_table_id 為需要進(jìn)行合并單元格的表格id。如在HTMl中指定表格 id="data" ,此參數(shù)應(yīng)為 #data
//參數(shù)說(shuō)明:_w_table_rownum 為需要合并單元格的所在行。其參數(shù)形式請(qǐng)參考jQuery中nth-child的參數(shù)。
// 如果為數(shù)字,則從最左邊第一行為1開(kāi)始算起。
// "even" 表示偶數(shù)行
// "odd" 表示奇數(shù)行
// "3n+1" 表示的行數(shù)為1、4、7、10.
//參數(shù)說(shuō)明:_w_table_maxcolnum 為指定行中單元格對(duì)應(yīng)的最大列數(shù),列數(shù)大于這個(gè)數(shù)值的單元格將不進(jìn)行比較合并。
// 此參數(shù)可以為空,為空則指定行的所有單元格要進(jìn)行比較合并。
function _w_table_colspan(_w_table_id,_w_table_rownum,_w_table_maxcolnum){
if(_w_table_maxcolnum == void 0){_w_table_maxcolnum=0;}
_w_table_firsttd = "";
_w_table_currenttd = "";
_w_table_SpanNum = 0;
$(_w_table_id + " tr:nth-child(" + _w_table_rownum + ")").each(function(i){
_w_table_Obj = $(this).children();
_w_table_Obj.each(function(i){
if(i==0){
_w_table_firsttd = $(this);
_w_table_SpanNum = 1;
}else if((_w_table_maxcolnum>0)&&(i>_w_table_maxcolnum)){
return "";
}else{
_w_table_currenttd = $(this);
if(_w_table_firsttd.text()==_w_table_currenttd.text()){
_w_table_SpanNum++;
_w_table_currenttd.hide(); //remove();
_w_table_firsttd.attr("colSpan",_w_table_SpanNum);
}else{
_w_table_firsttd = $(this);
_w_table_SpanNum = 1;
}
}
});
});
}
3、在html的head中調(diào)用合并函數(shù)合并單元格
復(fù)制代碼 代碼如下:
地區(qū) | 地區(qū) | 商品代碼 | 商品名稱(chēng) | 數(shù)量 | 有效期至 | 距效期(月) | 產(chǎn)品批號(hào) | 規(guī)格 | 單位 | 條形碼 | 地區(qū) | 地區(qū) | 商品代碼 | 商品名稱(chēng) | 數(shù)量 | 有效期至 | 距效期(月) | 產(chǎn)品批號(hào) | 規(guī)格 | 單位 | 條形碼 |
---|
【jQuery的合并表格中相同文本的相鄰單元格的代碼】相關(guān)文章:
1.jQuery實(shí)現(xiàn)的拖動(dòng)調(diào)整表格單元格的大小代碼實(shí)例