-
使用方式
<script src="./js/common/jquery.table2excel.js"></script>
-
具体导出代码
$('#tableShow').table2excel({ exclude: ".noExl", name: "Excel Document Name", filename: "name-" + moment($('#dateTime').data('DateTimePicker').date()).format('YYYY-MM-DD'), fileext: ".xls", exclude_img: true, exclude_links: true, exclude_inputs: true })
-
input
输入框不能导出表格中的 input 框中的值不能导出(需要给 value 赋值)
// input 动态赋值 $(".table tr td").each(function (index, el) { if ($(this).find('input').length) { // 存在 input $(this).find('input').attr('value', $(this).find('input').val()); } })
-
selectpicker
下拉项被导出// 暂时清除下拉列表 $('.single-cell ul').empty(); // 导完表格后 refresh $('.selectpicker').selectpicker('refresh');
网友评论