jquery 動態表格合併
$.fn.extend({
//表格合併單元格,colIdx要合併的列序號,從0開始
"rowspan": function (colIdx) {
return this.each(function () {
var that;
$('tr', this).each(function (row) {
$('td:eq(' + colIdx + ')', this).filter(':visible').each(function (col) {
if (that != null && $(this).html() == $(that).html()) {
rowspan = $(that).attr("rowSpan");
if (rowspan == undefined) {
$(that).attr("rowSpan", 1);
rowspan = $(that).attr("rowSpan");
}
rowspan = Number(rowspan) + 1;
$(that).attr("rowSpan", rowspan);
$(this).hide();
} else {
that = this;
}
});
});
});
}
});
$("#testlist").rowspan(1); //第一列合併
//表格合併單元格,colIdx要合併的列序號,從0開始
"rowspan": function (colIdx) {
return this.each(function () {
var that;
$('tr', this).each(function (row) {
$('td:eq(' + colIdx + ')', this).filter(':visible').each(function (col) {
if (that != null && $(this).html() == $(that).html()) {
rowspan = $(that).attr("rowSpan");
if (rowspan == undefined) {
$(that).attr("rowSpan", 1);
rowspan = $(that).attr("rowSpan");
}
rowspan = Number(rowspan) + 1;
$(that).attr("rowSpan", rowspan);
$(this).hide();
} else {
that = this;
}
});
});
});
}
});
$("#testlist").rowspan(1); //第一列合併
相關文章
- elementui表格動態資料單元格合併UI
- JS動態生成表格後 合併單元格JS
- 生成表格與合併表格
- jQuery動態新增和刪除表格行jQuery
- JSP頁面動態生成表格併為表格新增事件JS事件
- jQuery動態新增和刪除表格記錄jQuery
- 螞蟻金服的design Vue表格 動態合併程式碼詳情!Vue
- 使用jquery合併表格中相同文字的相鄰單元格jQuery
- vue表格合併單元格Vue
- js 表格合併單元格JS
- js合併相同內容表格行JS
- element中表格合併單元格
- 動態建立表格
- EXCEL國地稅表格的合併技巧Excel
- python中合併表格的兩種方法Python
- JavaScript 動態建立table表格JavaScript
- JavaScript動態建立table表格JavaScript
- javascript 動態新增表格行JavaScript
- JavaScript動態建立表格和增加表格的行JavaScript
- elementui——表格的相同內容單元格合併UI
- 表格實現標題合併程式碼例項
- table表格單元格合併程式碼例項
- excel合併單元格快捷鍵 excel多個表格內容合併到一起Excel
- asp.net動態表格生成ASP.NET
- AngularJS教程九—— 動態表格AngularJS
- vue-split-table【表格合併和編輯外掛】Vue
- table表格單元格橫向和屬性合併
- vue+element實現表格跨行或跨列合併Vue
- 使用JQuery刪除Table中的合併行jQuery
- 靜態合批和動態合批
- Python新手處女作:Excel自動錄入&Excel表格快速合併(附有原始碼)PythonExcel原始碼
- JavaScript合併表格中的內容相同的單元格JavaScript
- 兩種動態建立表格的方法
- 如何在iView中動態建立表格View
- JavaScript動態為table表格新增行JavaScript
- JavaScript動態向表格新增資料JavaScript
- 開發動態編輯的表格
- jQuery合併兩個陣列程式碼例項jQuery陣列