1

我是编码新手,我不知道我的问题可能很简单,但我最近开始学习编码。

对于我的简单应用程序,我想对表格进行排序并为其设置一个搜索框。

我已经尝试下载最新的 jquery.tablesorter.js、widgets-filter.js。并尝试对基本表进行排序。但我无法让它工作。我无法正确找到任何示例下载文件,以便我尝试理解它。在我见过的大多数插件中,哪里会有一个可以下载的演示文件夹,其中包含插件的基本演示。

对于我的应用程序,我需要在页面加载和加载后基于两列对表格进行排序,我必须能够使用搜索框进行搜索。作为此处提供的演示https://mottie.github.io/tablesorter/docs/example-widget-filter-any-match.html

我尝试查看页面的源代码并尝试使用那里使用的相同插件,但我无法使其工作。有人可以帮我让它工作,并指出我可以下载演示文件夹或类似的东西,以便我能理解它。

4

1 回答 1

1

这是一个使用带有外部搜索输入的过滤器小部件的简化演示:https ://jsbin.com/qahuba/1/edit?html,output

基本 HTML

<input type="text" data-column="all" class="search">
<table><!-- thead & tbody required --></table>

基本脚本

<script src="//code.jquery.com/jquery-git.js"></script>
<script src="https://mottie.github.io/tablesorter/js/jquery.tablesorter.js"></script>
<script src="https://mottie.github.io/tablesorter/js/jquery.tablesorter.widgets.js"></script>
<script>
/* Documentation for this tablesorter FORK can be found at
 * http://mottie.github.io/tablesorter/docs/
 */
$(function() {
  $('table').tablesorter({
    theme: 'blue',
    widgets: ['zebra', 'filter'],
    widgetOptions: {
      // jQuery selector string (or jQuery object) of external filters
      filter_external: '.search',
      // If true, a filter will be added to the top of each table column.
      filter_columnFilters: false
    }
  });
});
</script>

注意:在生产中,指向您自己的服务器上的 jQuery 和 tablesorter 文件或来自稳定的 CDN 源(即不是jquery-git.js直接来自 github 的文件)。

于 2016-11-06T20:09:40.950 回答