W3.JS 过滤器
创建于 2024-12-03 /
36
字体:
[默认]
[大]
[更大]
筛选元素:
w3.filterHTML(selector)筛选列表
在输入字段中搜索名称。
- {{CustomerName}}
实例
<input oninput="w3.filterHTML('#id01', 'li', this.value)"><ul id="id01">
<li>Alfreds Futterkiste</li>
<li>Berglunds snabbkop</li>
... 亲自试一试 » 使用 CSS »
筛选表格
在输入字段中搜索名称。
名称 | Country |
---|---|
Berglunds snabbköp | Sweden |
North/South | UK |
Alfreds Futterkiste | Germany |
Königlich Essen | Germany |
Magazzini Alimentari Riuniti | Italy |
Paris spécialités | France |
Island Trading | UK |
Laughing Bacchus Winecellars | Canada |
实例
<input oninput="w3.filterHTML('#id01', '.item', this.value)"><table id="id01">
<tr>
<th>Customer</th>
<th>City</th>
<th>Country</th>
</tr>
<tr class="item">
<td>Alfreds Futterkiste</td>
<td>Berlin</td>
<td>Germany</td>
</tr>
<tr class="item">
<td>Berglunds snabbkop</td>
<td>Lulea</td>
<td>Sweden</td>
</tr>
... 亲自试一试 » 使用 CSS »
0 人点赞过