jquery 合并table的列

function hbTable(col, text, i) {
		$(".gridtable tbody tr").each(
				function(index, element) {
					var typeText = $(this).children(":eq(" + col + ")").text();
					if (text != typeText) {
						text = typeText;
						i = index;
					} else {
						var rs = $(".gridtable tbody tr:eq(" + i + ")")
								.children(":eq(" + col + ")");
						if ($(rs).attr("rowspan") == undefined) {
							$(rs).attr("rowspan", "2");
						} else {
							$(rs).attr("rowspan",
											$(rs).attr("rowspan") * 1 + 1);
						}
						$(this).children(":eq(" + col + ")").hide();
					}
				});
	}


你可能感兴趣的:(jquery,table,合并)