Created
August 25, 2017 12:02
-
-
Save 3014zhangshuo/7c0577c97464d4dcd6e88d49bd6bd18e to your computer and use it in GitHub Desktop.
根据已有的下拉框内容进行搜索
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
$('.logo-live-search-list li').each(function(){ | |
$(this).attr('data-search-term', $(this).text()); | |
}); | |
$('.logo-live-search-box').on('keyup', function(){ | |
var searchTerm = $(this).val(); | |
$('.logo-live-search-list li').each(function(){ | |
if ($(this).filter('[data-search-term *= ' + searchTerm + ']').length > 0 || searchTerm.length < 1) { | |
$(this).show(); | |
} else { | |
$(this).hide(); | |
} | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment