function MergeTableCell(tableId, startRow, endRow, col) { var tb = document.getElementById(tableId); //设置为0时,检索所有行 if (endRow == 0) { endRow = tb.rows.length - 1; } //指定数据行索引大于表格行数 if (endRow >= tb.rows.length) { return; } //检测指定的列索引是否超出表格列数 if (col…