LoginSignup
5
1

More than 5 years have passed since last update.

検索 リストのリアルタイム絞り込み

Last updated at Posted at 2017-11-20

自分メモ用。

/*----------------------------------------
検索 リストの絞り込み
----------------------------------------*/
var searchtext1 = '#search-table-word';
var searcharea1 = $('#search-table');
$(document).on('input keyup blur', searchtext1 , function (e) {
    //検索ワード指定
    var search = $(searchtext1).val();
    searcharea1.find('.tr').hide().each(function () {
        var tr = $(this);
        $(this).find('.td').each(function () {
            if ($(this).text().match(search)) {
                tr.show();
            }
        })
    });
});
5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1