此代码将在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>
getcsv.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>
答案 0 :(得分:1)
您只将最近的网站表内容粘贴到csv中 这个javascript:
var csv_value=$('#example1').table2CSV({delivery:'value'});
//$("#csv_text").val(csv_value);
和php:
$data=stripcslashes($_REQUEST['csv_text']);
您的javascript只读取最近的html页面中的数据,因此您只能获取它们。
这是最好的解决方案: 更改您的php文件以获取所有表站点的所有数据。