layui select下拉框不区分大小写搜索
按这个办法可行:
https://blog.csdn.net/weixin_44681697/article/details/101348096
路径
layui---lay---modules---form.js
搜索
r=l.indexOf(e)===-1
这个及挨着的前边改成如下
l=i.text().toLowerCase(),r=l.indexOf(e.toLowerCase())===-1;
posted on 2020-04-13 10:27 webjlwang 阅读(1307) 评论(0) 编辑 收藏 举报