我已经创建了一个用于在javascript中将表格内容获取为html的应用程序,该应用程序运行良好,但是问题是在获取javascript中的html内容后,我想从javascript html表格内容中删除第一列

谁能告诉我一些解决方案

Working Demo

function printData() {
    var divToPrint = document.getElementById("printTable");
    alert(divToPrint.outerHTML);
}

$('button').on('click', function () {
    printData();
})

最佳答案

您可以克隆元素,删除第一个子元素td和第一个th,然后读取克隆元素的outerHTML

$(divToPrint).clone()
             .find('th:first-child, td:first-child').remove().end()
             .prop('outerHTML');

09-20 20:49
查看更多