JQuery实现表格⾥⾯的相同内容的单元格合并<script type="text/javascript">
wspan = function (colIdx) { //封装的⼀个JQuery⼩插件
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;
}
});
});
});
jquery在项目里是干啥的}
$(function () {
$("#table1").rowspan(0);//传⼊的参数是对应的列数从0开始,哪⼀列有相同的内容就输⼊对应的列数值
$("#table1").rowspan(2);
});
</script>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论