jquery 合并单元格
在使用 jQuery 合并表格中的相邻单元格时,可以使用以下方法:
function mergeCells(selector, colNum) {
// 遍历每一行
$(selector).each(function() {
var $row = $(this);
var $cells = $row.find('td');
var lastValue = $cells.eq(colNum).text();
var nextRow = $row.next();
while(nextRow.length > 0 && nextRow.find('td').eq(colNum).text() === lastValue) {
// 合并单元格
nextRow.find('td').eq(colNum).remove();
$row.find('td').eq(colNum).attr('rowspan', parseInt($row.find('td').eq(colNum).attr('rowspan')) + 1);
nextRow = nextRow.next();
}
});
}
// 使用方法:选择器为表格,第二个参数为要合并的列索引
mergeCells('table', 1);
这段代码定义了一个 mergeCells
函数,接受一个选择器和要合并的列的索引号。函数会遍历表格中的每一行,检查指定列的值,如果下一行的同一列的值与当前行相同,就合并这些单元格。这个函数可以用来合并任何列的相邻单元格。
评论已关闭