gpt4 book ai didi

javascript - html 到 excel 导出

转载 作者:行者123 更新时间:2023-12-02 20:28:08 27 4
gpt4 key购买 nike

我有一个 HTML 格式的表格。

<table  id="table" title="banner"  border="1" align="center" >
<tr><th>ID</th><th>Name</th><th>Month</th><th>Savings</th></tr>
<tr><td>101</td><td>Ramesh</td><td>January</td><td>$100</td></tr>
<tr><td>102</td><td>Ram</td><td>Feb</td><td>$200</td></tr>
<tr><td>103</td><td>Ramna</td><td>Mar</td><td>$300</td></tr>
</table>
</body>
</html>

我使用的是 Mozilla 3.6。那么如何将结果导出到 Excel 工作表?

最佳答案

如果您的意思是,正如 VinayC 在其中一条评论中所述,导出生成的 HTML 而无需再次访问服务器,那么它可以与 Downloadify 一起正常工作。 .

GitHub 上的说明:

This library is a tiny JavaScript + Flash library that allows you to generate files on the fly, in the browser, without server interaction. Web applications that allow you to generate vCards, color palettes, custom code, etc would benefit from using this library. In addition to increasing speed (no round trip to the server) this solution can reduce the database and server load of existing web applications. This is not a library to ‘force download’ a file from a server. It does not interact with a server at all.

我实际上在我们的业务环境中将它与 jquery 1.4.4 一起使用。我必须显示包含 10k+ 行和大约 15 列的表格,这些表格构成 13.5mb 的数据。

$('#tbl_purchase_groups_download').downloadify({
'filename' : 'Purchase_groups.xls',
'data' : html_wrapper_pre + document.getElementById('purchase_groups').innerHTML + html_wrapper_after});

html_wrapper_prehtml_wrapper_after 是使用提供的编码的打开和关闭 html 结构。

关于javascript - html 到 excel 导出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4507666/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com