gpt4 book ai didi

jquery - 如何禁用 jQuery 数据表中某一列的过滤并保留其他列的过滤?

转载 作者:行者123 更新时间:2023-12-03 22:16:40 27 4
gpt4 key购买 nike

我是 jQuery 新手,我需要知道是否有任何方法可以禁用 jQuery 数据表中某一列的过滤?我的数据表有 5 列,我需要禁用最后一列的过滤。

最佳答案

Use the bSearchable flag 。来自文档:

// Using aoColumnDefs
$(document).ready( function() {
$('#example').dataTable( {
"aoColumnDefs": [
{ "bSearchable": false, "aTargets": [ 0 ] }
] } );
} );


// Using aoColumns
$(document).ready( function() {
$('#example').dataTable( {
"aoColumns": [
{ "bSearchable": false },
null,
null,
null,
null
] } );
} );

关于jquery - 如何禁用 jQuery 数据表中某一列的过滤并保留其他列的过滤?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14879444/

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