gpt4 book ai didi

datatables-1.10 - 数据表选择事件未触发

转载 作者:行者123 更新时间:2023-12-05 07:44:13 25 4
gpt4 key购买 nike

我有以下代码从数据库中获取数据并显示为表格。

var tables = $('#factsTable')
.DataTable({
"aProcessing": true,
"aServerSide": true,
"ajax": "includes/get-infacts.php",
})
.on('preInit.dt', function (e, settings) {
console.log('preInit.dt');
})
.on('init.dt', function () {
console.log('init.dt');
})
.on('draw.dt', function () {
console.log('draw.dt');
})
.on('search.dt', function () {
console.log('search.dt');
})
.on('select', function ( e, dt, type, indexes ) {
console.log('data table select');
});

在这段代码中,除了“选择”监听器之外,所有其他事件监听器都在为我工作。

我不知道为什么不起作用。

最佳答案

.dt”丢失..

.... .on('select.dt', function ( e, dt, type, indexes ) { console.log('数据表选择');

关于datatables-1.10 - 数据表选择事件未触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43041813/

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