任何专家都知道是否有任何搜索jquery插件允许您在搜索框中输入过滤,并且搜索是基于div ID的名称?
如果它是即时刷新过滤器,它将是最好的。
非常宽泛的问题,我不确定你是什么意思。输入意味着实际搜索div本身?在任何情况下,您都可以使用几行jquery进行搜索。我在下面包含了一个例子。
https://jsfiddle.net/cshanno/m0pchv1j/1/JQUERY$('#search').keyup(function(){
var input = $(this).val();
$('div').each(function(i) {
if (input === $(this).attr('id')) {
$(this).addClass('show'); // run your code after you find the div
} else {
$(this).removeClass('show'); // else do whatever
}
});
});