在 jQuery Tree 中,可以使用 filter
插件來處理節(jié)點(diǎn)的過濾搜索。以下是如何使用 filter
插件進(jìn)行節(jié)點(diǎn)過濾搜索的步驟:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jQueryTree/1.0.0/jquery.tree.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQueryTree/1.0.0/jquery.tree.min.js"></script>
<div id="tree"></div>
$(document).ready(function () {
$("#tree").tree({
data: [
{
label: "Node 1",
children: [
{ label: "Node 1.1" },
{ label: "Node 1.2" },
],
},
{
label: "Node 2",
children: [
{ label: "Node 2.1" },
{ label: "Node 2.2" },
],
},
],
});
});
filter
插件進(jìn)行節(jié)點(diǎn)過濾搜索:$("#search").on("input", function () {
var searchText = $(this).val().toLowerCase();
$("#tree").tree("filter", searchText);
});
在 HTML 中添加一個(gè)搜索框元素:
<input type="text" id="search" placeholder="Search nodes...">
現(xiàn)在,當(dāng)用戶在搜索框中輸入文本時(shí),jQuery Tree 會根據(jù)輸入的文本過濾節(jié)點(diǎn)。只有與搜索文本匹配的節(jié)點(diǎn)才會顯示在樹形結(jié)構(gòu)中。