ASP.Net MVC 學習筆記
目的:在網頁端讓使用者可以下載Word檔案,該內容為網頁上的資料。
必需條件:
1. 使用 http://www.jqueryscript.net/demo/Export-Html-To-Word-Document-With-Images-Using-jQuery-Word-Export-Plugin/jquery.wordexport.js
2. 引用Jquery
HTML如下 :
<script>
$("#HtmlElement").wordExport();
<script>
其中HtmlElement 把它換成想要呈現的html資訊的id ,例如
<table id="WhatTheXX">
<tr>
<td>a</td>
<td>b</td>
</tr>
</table>
JS變成如下,就會把table裡面的資料轉成word檔案給使用者下載
<script>
$("#WhatTheXX").wordExport();
<script>