<!DOCTYPE html><html><head><title></title><linkhref="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.6-rc.0/css/select2.min.css"rel="stylesheet" /></head><body><selectclass="js-example-basic-single"name="state"style="width: 200px"><optionvalue="AL"title="12"data-search="ng">你好</option><optionvalue="WY"data-search="nk|nanke" >男科</option></select><scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script><scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.6-rc.0/js/select2.min.js"></script><scripttype="text/javascript">
$(document).ready(function() {
$('.js-example-basic-single').select2({
//matchCustom 自定义的筛选函数matcher: matchCustom
});
});
functionmatchCustom(params, data) {
// If there are no search terms, return all of the dataif ($.trim(params.term) === '') {
return data;
}
// Do not display the item if there is no 'text' propertyif (typeof data.text === 'undefined') {
returnnull;
}
if (data.text.indexOf(params.term) > -1 || String($(data.element).data('search')).indexOf(params.term) > -1) {
return data;
}
returnnull;
}
</script></body></html>