当前位置:  开发笔记 > 编程语言 > 正文

根据选择值过滤表格行

如何解决《根据选择值过滤表格行》经验,为你挑选了1个好方法。

我需要根据选择值过滤表行.当选择的值为""(空)时,必须隐藏表.如果select值为1,则表必须可见,并且必须仅显示第一个表列保持值为1的行.

问题是这个id列包含多个id,如1,2.由于我的JQuery技能不是最好的,我需要你们帮我完成我的代码

我的选择器


我的桌子

ids name address
1,2 Jhon Doe
3 Mike Poet
2,3 Ace Ventura

我的剧本

$(document).ready(function($) {
    $('table').hide();
    $('#mySelector').change( function(){
      $('table').show();
      var selection = $(this).val();
      var dataset = $('#myTable').find('tr');
          $.each(dataset, function(index, item) {
            //help
          });
    });
});

这里有工作人员

如果您需要任何其他信息,请告诉我,我会提供.先感谢您.



1> kukkuz..:

您可以根据包含id的内容过滤行:td

    你的数据集必须是$('#myTable tbody').find('tr')这样的,它不会显示/隐藏thead

    首先显示所有表格tr使用dataset.show()

    现在过滤掉tr您不需要显示的s:

    dataset.filter(function(index, item) {
      return $(item).find('td:first-child').text().split(',').indexOf(selection) === -1;
    }).hide();
    

见下面的演示:

$(document).ready(function($) {
  $('table').hide();
  $('#mySelector').change(function() {
    $('table').show();
    var selection = $(this).val();
    var dataset = $('#myTable tbody').find('tr');
    // show all rows first
    dataset.show();
    // filter the rows that should be hidden
    dataset.filter(function(index, item) {
      return $(item).find('td:first-child').text().split(',').indexOf(selection) === -1;
    }).hide();

  });
});
/* Styles go here */

table {
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.styled-select.slate {
  height: 34px;
  width: 240px;
}







ids name address
1,2 Jhon Doe
3 Mike Poet
2,3 Ace Ventura
推荐阅读
LEEstarmmmmm
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有