最近公司改後台管理系統。要求匯出台帳專案等等為excel表格,找半天還真有,他是透過query.table2excel.js 實現,原諒我原生不會弄這個當然大家有可以留言給我。本文主要和大家分享把html表格產生為excel表格的範例。小編覺得蠻不錯的,現在就分享給大家,也給大家做個參考。一起跟著小編過來看看吧,希望能幫助大家。
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <body> <table class="table"> //表格 <tr class="noExl"> //加class是为了有些你不想导出用来选则 <th>Header</th> <th>111</th> </tr> <tr> <td>Data</td> <td>222</td> </tr> </table> <button id="btn">导出</button> <script src="js/jquery-1.11.0.min.js" type="text/javascript" charset="utf-8"></script>//引入jquery <script src="js/jquery.table2excel.js" type="text/javascript" charset="utf-8"></script> //引入jquer插件 <script type="text/javascript"> $("#btn").click(function(){ //点击按钮执行导出 $(".table").table2excel({ //选取导出的表格 exclude: ".noExl", //写你不想都想导出的 name: "Excel Document Name", filename: "项目", //导出的文件名 exclude_img: true, //是否导出图片 exclude_links: true, exclude_inputs: true }); }) </script> </body> </html>
相關推薦:
以上是前端html表格產生excel表格實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!