Skip to content

Instantly share code, notes, and snippets.

@3014zhangshuo
Created August 25, 2017 12:02
Show Gist options
  • Save 3014zhangshuo/7c0577c97464d4dcd6e88d49bd6bd18e to your computer and use it in GitHub Desktop.
Save 3014zhangshuo/7c0577c97464d4dcd6e88d49bd6bd18e to your computer and use it in GitHub Desktop.
根据已有的下拉框内容进行搜索
$(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