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
     ❯   

Bootstrap 筛选器 (高级)


Bootstrap 筛选器

Bootstrap 没有提供一个用于筛选的组件。但是,我们可以使用 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() 方法将文本转换为小写,这使得搜索不区分大小写(允许 "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.