了解如何使用 JavaScript 创建搜索菜单来过滤链接。
如何在导航菜单中搜索链接:
开始在搜索栏中输入特定类别/链接以 "filter" 搜索选项。
一些文字..一些文字..一些文字..一些文字..一些文字..一些文字..一些文字..一些文字..
其他一些文字..一些文字..一些文字..一些文字..一些文字..一些文字..一些文字..一些文字..
一些文字..
<input type="text" id="mySearch" onkeyup="myFunction()" placeholder="Search.." title="Type in a category">
<ul id="myMenu">
<li><a href="#">HTML</a></li>
<li><a href="#">CSS</a></li>
<li><a href="#">JavaScript</a></li>
<li><a href="#">PHP</a></li>
<li><a href="#">Python</a></li>
<li><a href="#">jQuery</a></li>
<li><a href="#">SQL</a></li>
<li><a href="#">Bootstrap</a></li>
<li><a href="#">Node.js</a></li>
</ul>
笔记:我们在此演示中使用 href="#",因为我们没有可链接到的页面。在现实生活中,这应该是特定页面的真实 URL。
设置搜索框和导航菜单的样式:
/* Style the search box */
#mySearch {
width: 100%;
font-size: 18px;
padding: 11px;
border: 1px solid #ddd;
}
/* Style the navigation menu */
#myMenu {
list-style-type: none;
padding: 0;
margin: 0;
}
/* Style the navigation links */
#myMenu li a {
padding: 12px;
text-decoration: none;
color: black;
display: block
}
#myMenu li a:hover {
background-color: #eee;
}
<script>
function myFunction() {
// Declare variables
var input, filter, ul, li, a, i;
input = document.getElementById("mySearch");
filter = input.value.toUpperCase();
ul = document.getElementById("myMenu");
li = ul.getElementsByTagName("li");
// Loop through all list items, and hide those who don't match the search query
for (i = 0; i < li.length; i++) {
a = li[i].getElementsByTagName("a")[0];
if (a.innerHTML.toUpperCase().indexOf(filter) > -1) {
li[i].style.display = "";
} else {
li[i].style.display = "none";
}
}
}
</script>
亲自试一试 »
提示:消除toUpperCase() 如果您想执行区分大小写的搜索。
提示:还请查看如何过滤表格。
提示:还请查看如何过滤列表。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!