gpt4 book ai didi

javascript - jquery 中的数据表不显示打印按钮

转载 作者:行者123 更新时间:2023-11-30 06:20:11 25 4
gpt4 key购买 nike

我有以下 js fiddle https://jsfiddle.net/jek1uobr/ .虽然我添加了打印按钮,但它没有显示在数据表中。

 $(function () {$('#example').DataTable( {
orderCellsTop: true,
dom: 'Bfrtip',
buttons: [
'print'
],
"columnDefs": [
{ "width": "25%", "targets": [ 1 ] }
],
"dom" : '<"top"fl<"clear">>rt<"bottom"ip<"clear">>',

initComplete: function () {
this.api().columns([1,2,3,4,5]).every(function () {
var column = this;
var select = $('<select style="width:130px; font-size: 13px; padding: 2px 1px 2px 1px; background: #fff; border: 1px solid #ccc; border-radius: 6px;position: relative; "><option value="">(All)</option></select>')
.appendTo($(column.header()))
.appendTo( $("#example thead tr:eq(1) th").eq(column.index()).empty())
.on('change', function () {
var val = $.fn.dataTable.util.escapeRegex(
$(this).val()
);

column
.search(val ? '^' + val + '$' : '', true, false)
.draw();
});
column.data().unique().sort().each(function (d, j) {
select.append('<option value="' + d + '">' + d + '</option>')
} );
} );
}
} );});

最佳答案

你只需要添加,

 'dom': "<'row'<'col-sm-4'l> <'col-sm-8'p>>" + 'Bfrtip',

有关更多信息,您可以在下面看到类似的内容, https://datatables.net/reference/option/dom

更新后的代码应该是这样的,

$(function () {$('#example').DataTable( {
orderCellsTop: true,
'dom': "<'row'<'col-sm-4'l> <'col-sm-8'p>>" + 'Bfrtip',
buttons: [
'print'
],
"columnDefs": [
{ "width": "25%", "targets": [ 1 ] }
],

initComplete: function () {
this.api().columns([1,2,3,4,5]).every(function () {
var column = this;
var select = $('<select style="width:130px; font-size: 13px; padding: 2px 1px 2px 1px; background: #fff; border: 1px solid #ccc; border-radius: 6px;position: relative; "><option value="">(All)</option></select>')
.appendTo($(column.header()))
.appendTo( $("#example thead tr:eq(1) th").eq(column.index()).empty())
.on('change', function () {
var val = $.fn.dataTable.util.escapeRegex(
$(this).val()
);

column
.search(val ? '^' + val + '$' : '', true, false)
.draw();
});
column.data().unique().sort().each(function (d, j) {
select.append('<option value="' + d + '">' + d + '</option>')
} );
} );
}
} );});

关于javascript - jquery 中的数据表不显示打印按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53652814/

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