gpt4 book ai didi

jquery - 数据表 Jquery 单个列过滤器/搜索

转载 作者:行者123 更新时间:2023-12-01 04:16:28 25 4
gpt4 key购买 nike

我想搜索表中的所有列。我尝试了很多但没有用。这里缺少什么?

<table id="table_id" class="display">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row 1 Data 1</td>
<td>asdf</td>
</tr>
<tr>
<td>tt</td>
<td>Row 2 Data 2</td>
</tr>
</tbody>

这是我的代码:

<script type="text/javascript"  src="media/js/jquery.js"></script>
<script type="text/javascript" src="media/js/jquery.dataTables.js"> </script>
<link rel="stylesheet" href="media/css/demo_table.css" media="screen" />
<script language="javascript" type="text/javascript">
$(document).ready(function(){
$('#table_id').dataTable().columnFilter();
});
</script>

最佳答案

如果您不使用默认的列过滤器,则需要包含列过滤器插件。

jquery.dataTables.columnFilter.js

http://jquery-datatables-column-filter.googlecode.com/svn/trunk/index.html

包含插件后,尝试指定如下所示的内容,

  $('#example').dataTable({
bJQueryUI: true,
"sPaginationType": "full_numbers"
})


.columnFilter({ null, null});

关于jquery - 数据表 Jquery 单个列过滤器/搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14195338/

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