我使用下面的插件在XLS和WORD中導出表格數據。但是,當我導出表格數據時,它不包括表格標題行。那麼有沒有辦法在導出的數據中包含字段?如何在導出html表格數據中包含<th>行?
<li>
<a href="#" onClick ="$('#datawtable').tableExport({type:'excel',escape:'false'});">
<img src='icons/xls.png' width='24px'> XLS
</a>
</li>
<li>
<a href="#" onClick ="$('#datawtable').tableExport({type:'doc',escape:'false'});">
<img src='icons/word.png' width='24px'> Word
</a>
</li>
<script type="text/javascript" src="js/tableExport.js"></script>
<script type="text/javascript" src="js/jquery.base64.js"></script>
<script type="text/javascript" src="js/html2canvas.js"></script>
HTML表:
<table class="draw_table" id="datawtable" border="1" width="100%" cellspacing="0" cellpadding="0">
<tr>
<th>
<a href="disdept.php?sort_element=dept_name&sort_type=<?php echo
($sort_element == "dept_name" && $sort_type == "asc") ? "desc" : "asc"; ?>">Department
<?php if ($sort_element == "dept_name") { if($sort_type == "desc") { ?>
<img class="sorting" src="images2/downarrow.png" alt="asc">
<?php } else { ?>
<img class="sorting" src="images2/uparrow.png" alt="desc">
<?php } } ?>
</a>
</th>
<th >Description</th>
<th >Options</th>
</tr>
@jameslafferty:我看過你的解決方案爲http://計算器。 com/questions/20216495/jquery-export-to-excel-include-html-th-rows?rq = 1你能看到這個嗎? –
@Rohit Arora:你能幫我解決這個問題嗎? –
我認爲@Sachin是對的,你沒有遵循HTML結構,因爲在插件中添加th的代碼已經存在。 –