1

此代码将在 html 文件中下载表格:我从这里得到它:http ://www.kunalbabre.com/projects/table2CSV.php

<form action="getcsv.php" method ="post" > 
<input type="hidden" name="csv_text" id="csv_text"/>
<input type="submit" value="Get CSV File"  onclick="getCSVData()">
</form>

    <script>
    function getCSVData(){
     var csv_value=$('#example1').table2CSV({delivery:'value'});
     //$("#csv_text").val(csv_value);   
    }
    </script>

获取csv.php:

<?php
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"my-data.csv\"");
$data=stripcslashes($_REQUEST['csv_text']);

echo $data; 
?>

但是,我提取的表格是分页的。我只能得到第一页。如何在 csv 中包含表中的所有数据?

分页表如下所示:

<div id="paging_container8">
 <div class="page_navigation">
 </div>
   <table id="my-table">
      <tr style="display: table-row;">
      <tr style="display: table-row;">
      <tr style="display: none;"> // next page (paginated)
      <tr style="display: none;"> //next page (paginated)
   </table>
 <div class="page_navigation">
 </div>
<br>
</div>
4

1 回答 1

1

您通过此 javascript 仅将最近的站点表内容粘贴到 csv 中:

var csv_value=$('#example1').table2CSV({delivery:'value'});
 //$("#csv_text").val(csv_value); 

和 php:

$data=stripcslashes($_REQUEST['csv_text']);

您的 javascript 仅从最近的 html 页面中读取数据,因此您只能获取它们。

这是最好的解决方案:更改您的 php 文件以从所有表站点获取所有数据。

于 2013-05-23T18:16:50.400 回答