Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

jQuery - 过滤器


jQuery 过滤器

使用 jQuery 过滤/搜索特定元素。


过滤表格

对表格中的项目执行不区分大小写的搜索

示例

在输入字段中输入内容以搜索表格中的名字、姓氏或电子邮件


名字 姓氏 电子邮件
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]
Anja Ravendale [email protected]

jQuery

<script>
$(document).ready(function(){
  $("#myInput").on("keyup", function() {
    var value = $(this).val().toLowerCase();
    $("#myTable tr").filter(function() {
      $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
    });
  });
});
</script>
亲自尝试 »

示例说明:我们使用 jQuery 遍历每个表格行,以检查是否有任何文本值与输入字段的值匹配。toggle() 方法隐藏与搜索不匹配的行(display:none)。我们使用 toLowerCase() DOM 方法将文本转换为小写,这使得搜索不区分大小写(允许在搜索时使用“john”、“John”甚至“JOHN”)。



过滤列表

对列表中的项目执行不区分大小写的搜索

示例

在输入字段中输入内容以搜索列表中的项目


  • 第一项
  • 第二项
  • 第三项
  • 第四项
亲自尝试 »

过滤任何内容

对 div 元素内的文本执行不区分大小写的搜索

示例


我是一个段落。

我是一个 div 元素,在 div 内部。

另一个段落。

亲自尝试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.