chosen.jquery.js 使用笔记
chosen.jquery.js 搜索框只能从头匹配的解决思路+方法 心急者请直接看下方 总结 ,由于本问题未能找到直接答案,所以只能通过修改源码解决。故将修改源码思路贴出来供大家参考,在遇到其他改源码问题时应如何思考。 chosen.jquery.js(地址: http://harvesthq.github.io/chosen )是一款非常优秀的表单select框美化插件。它提供了一些非常实用的功能。但是在实用中却又有一些问题。 搜索从头匹配问题 首先,我们初始化一个chosen实例: html: <select data-placeholder="选择省份..." class="chosen-select" style="width:350px;" tabindex="2"> <option value="">请选择省份</option> <option value="110000" hassubinfo="true">北京</option> <option value="120000" hassubinfo="true">天津</option> <option value="130000" hassubinfo="true">河北省</option> ... </select> 1 2 3 4 5 6 7 js: <script type="text/javascript">