如何使用jquery導出爲excel格式時排除最後一列數據表?我試過.not("#tableid")
,.remove
,exclude:"#tableid"
但不起作用。是否有任何解決方案,這???下面是我的代碼導出爲excel時排除最後一列
表代碼:
<table class="table table-bordered table-striped tableToExcel" id="tbl_datatable">
<thead>
<tr>
<th>Identifier</th>
<th>Group Name</th>
<th>Group Name English</th>
<th>Fiscal Year</th>
<th>Date</th>
<th>District</th>
<th>District in English</th>
<th>VDC</th>
<th>VDC in English</th>
<th>Ward No</th>
<th>Program</th>
<th>Livestock/Crop</th>
<th id="noExl">Action</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
jQuery代碼:
$(document).ready(function() {
$("#exportExcel").click(function() {
$(function() {
$(".tableToExcel").remove("#noExl").table2excel({
exclude: "#noExl",
name: "Excel Document Name",
filename: "Group",
exclude_img: true,
exclude_links: true,
exclude_inputs: false
});
});
});
});
有許多具有相同的ID'noExl'它不允許。而是使用類名。 –
已經嘗試過類但也沒有解決 – Xravn
在導出之前使用類名並調用'$(「.className」)。remove();' – artm