【问题标题】:create excel file from HTML table using jQuery or PHP使用 jQuery 或 PHP 从 HTML 表创建 excel 文件
【发布时间】:2011-08-30 11:50:26
【问题描述】:

我的 PHP 页面上有一个 HTML 表格,我想将其导出为 excel 文件,并通过单击按钮将该文件供用户下载。如何使用 jQuery 或 PHP 做到这一点? .任何要演示的代码示例。这会很棒

【问题讨论】:

标签: php jquery


【解决方案1】:

您必须在页面上发布您拥有的表格的 html 标记或在服务器端创建相同的标记,然后使用以下代码将其导出为 excel 格式。

<?php
$file="test.xls";
$test="TheTableMarkupWillGoHere";
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$file");
echo $test;
?>

【讨论】:

    猜你喜欢
    • 2012-12-07
    • 2017-11-08
    • 1970-01-01
    • 2012-03-15
    • 2017-01-04
    • 2018-08-03
    • 1970-01-01
    • 1970-01-01
    • 2012-12-06
    相关资源
    最近更新 更多