AJax에서 동적으로 테이블을 생성하다 셀(행)을 병합해야할 일이 생겨서 코드를 찾아보았다.
$(document).ready(function(e){
mergeRowspan("td 클래스명");
});
function mergeRowspan(className){
$("." + className).each(function() {
var rows = $("." + className + ":contains('" + $(this).text() + "')");
if (rows.length > 1) {
rows.eq(0).attr("rowspan", rows.length);
rows.not(":eq(0)").remove();
}
});
}
자료 출처
[jQuery] 유동적인 테이블 셀병합 - rowspan
[JQuery]동적으로 Rowspan 하기