HTML,JS,JQUERY:filter dynamiquement une liste de noms(ou autre)pendant la saisie dans le cham.过滤动态(示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML,JS,JQUERY:filter dynamiquement une liste de noms(ou autre)pendant la saisie dans le cham.过滤动态(示相关的知识,希望对你有一定的参考价值。
<!-- html sample --> <ul> </ul> <script type="text/javascript"> //<![CDATA[ /* script to dynamically filter a list by name with a user search #search is an input[text] where users can enter a name Name in list and user input must to be in lowercase. This filter is case sensitive so we're going to lowercase user input before searching We use the jQuery function 'contains()' directly in our selector to look for an occurence of the user input in the element. --------------------------------------------------------------------*/ $("#search").bind("keyup", function(){ var name = $("#search").val(); name = name.toLowerCase(); $(".name-list").hide(); $(".name-list:contains('"+strToSearch+"')").show(); }); //]]> </script>
以上是关于HTML,JS,JQUERY:filter dynamiquement une liste de noms(ou autre)pendant la saisie dans le cham.过滤动态(示的主要内容,如果未能解决你的问题,请参考以下文章
Box<dyn Trait> doesn‘t implement the trait
jquery.filter() 实现元素前3个显示,其余的隐藏
如何将 Box<dyn Error + Sync + Send> 转换为 Box<dyn Error>