JQUERY 中是否有任何函数可以删除表中的空列。我附上了示例屏幕截图以便清楚地理解。
由于 MID 表中也包含合并单元格。
我已经尝试过这个片段,由于某种原因,浏览器只是继续显示加载并且浏览器挂起。
var $theTable = $("table#myTable"),
lookAt = ["tr:first-child", "tr:last-child",
"td:first-child", "td:last-child"];
for (var i=0; i<lookAt.length; i++) {
while ( $.trim($(lookAt[i], $theTable).text()) == "" ) {
$(lookAt[i], $theTable).remove();
}
}