帮我写一个基于jquery的select选项搜索组件
时间: 2023-03-16 11:43:38 浏览: 190
写了个jquery select 插件
我可以为您提供一个基于 jQuery 的 select 选项搜索组件的示例代码:// HTML 代码
<select id="mySelect">
<option>Apple</option>
<option>Orange</option>
<option>Banana</option>
<option>Pineapple</option>
</select>// jQuery 代码
$('#mySelect').on('keyup', function() {
var value = $(this).val().toLowerCase();
$('#mySelect > option').filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
阅读全文