我試圖將HTML表格轉換爲Excel,我嘗試使用將簡單表格轉換爲Excel的JavaScript函數,它工作正常。如果我有多個表格,我將如何將所有表格數據添加到Excel文件中。這是我的嘗試。我創建了2個表格並給出了表格索引testTable
和testTable1
。JavaScript - 將HTML表格數據導出到Excel中
如何通過點擊按鈕將這兩個表ID傳遞給JavaScript函數?現在點擊按鈕只有第一個表格被導出到Excel,因爲我只通過'testTable'
。我將如何能夠導出多個表,例如:testTable
,testTable1
到Excel中?
這裏的JavaScript的:
<script>
var tableToExcel = (function() {
var uri = 'data:application/vnd.ms-excel;base64,'
, template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]>
<xml>
<x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}
</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions>
</x:ExcelWorksheet></x:ExcelWorksheets>
</x:ExcelWorkbook>
</xml>
<![endif]-->
</head>
<body>
<table>{table}</table></body></html>'
, base64 = function(s) { return window.btoa(unescape(encodeURIComponent(s))) }
, format = function(s, c) { return s.replace(/{(\w+)}/g, function(m, p) { return c[p]; }) }
return function(table, name) {
if (!table.nodeType) table = document.getElementById(table)
var ctx = {worksheet: name || 'Worksheet', table: table.innerHTML}
window.location.href = uri + base64(format(template, ctx))
}
})()
</script>
這裏的HTML部分,
<table id="testTable">
<thead>
<tr>
<th>Name</th>
<th>ACP</th>
<th>OEMCP</th>
<th>Unix<br>
NT 3.1</th>
<th>Unix<br>
NT 3.51</th>
<th>Unix<br>
95</th>
</tr>
</thead>
</table>
<table id="testTable1">
<thead>
<tr>
<th>Name</th>
<th>ACP</th>
<th>OEMCP</th>
<th>Windows<br>
NT 3.1</th>
<th>Windows<br>
NT 3.51</th>
<th>Windows<br>
95</th>
</tr>
</thead>
</table>
請讓我知道,這可怎麼辦呢?
感謝
不能使用Web服務這個問題。它也將工作,無需回傳。 – osmanraifgunes 2013-03-05 12:50:24