gpt4 book ai didi

javascript - 从数据表中导出选定行的 csv 文件

转载 作者:行者123 更新时间:2023-11-27 23:14:13 24 4
gpt4 key购买 nike

我使用以下示例创建了一个数据表:

1. Individual column searching

2. File export

我的代码如下:

 <script type="text/javascript" charset="utf-8">
$(document).ready(function() {
// Setup - add a text input to each footer cell
$('#example tfoot th').each( function () {
var title = $(this).text();
$(this).html( '<input type="text" placeholder="Search '+title+'" />' );
} );

// DataTable

var table = $('#example').DataTable({'scrollX':true, 'dom': 'lBfrtip','buttons': ['csv']});

// Apply the search
table.columns().every( function () {
var that = this;

$( 'input', this.footer() ).on( 'keyup change', function () {
if ( that.search() !== this.value ) {
that
.search( this.value )
.draw();
}
} );
} );
} );
</script>

这段代码运行完美。现在我想仅导出选定的行而不更改示例 1 中的数据表结构。我不是 Jquery 专家。那么有人可以帮助我吗?还可以添加复选框来选择行吗?

谢谢

最佳答案

我已经通过使用以下代码成功做到了这一点:

    <script type="text/javascript" charset="utf-8">
$(document).ready(function() {
// Setup - add a text input to each footer cell
$('#example tfoot th').each( function () {
var title = $(this).text();
$(this).html( '<input type="text" placeholder="Search '+title+'" />' );
} );

// DataTable

var table = $('#example').DataTable({'scrollX':true, 'dom': 'lBfrtip',buttons: [{ extend: 'csv',text: 'CSV all'},{extend: 'csv',text: 'CSV selected',exportOptions: {modifier: {selected: true}}}],select: true});

// Apply the search
table.columns().every( function () {
var that = this;

$( 'input', this.footer() ).on( 'keyup change', function () {
if ( that.search() !== this.value ) {
that
.search( this.value )
.draw();
}
} );
} );
} );
</script>

所以我在现有脚本中添加了新代码。

buttons: [{ extend: 'csv',text: 'CSV all'},{extend: 'csv',text: 'CSV selected',exportOptions: {modifier: {selected: true}}}],select: true

关于javascript - 从数据表中导出选定行的 csv 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35952816/

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