Implement the fuzzy query of the drop-down menu input box

The style is as follows


<link href="<%=request.getContextPath() %>/js/select2/css/select2.css" rel="stylesheet" />

<script src="<%=request.getContextPath() %>/js/select2/js/select2.min.js"></script>

<script src="<%=request.getContextPath() %>/js/select2/js/i18n/zh-CN.js"></script>

This is the js and css that need to be loaded, and jQuery needs to be loaded additionally

<select id="lineCode" name="lineCode" class="js-example-basic-single" onchange="changeCpx()"></select>

//Initialize the product line drop-down box

$(document).ready(function(){

    $(".js-example-basic-single").select2({language: "zh-CN", placeholder: "请选择"});

    $.ajax({
type : "POST",
async:false,
contentType : 'application/json',
url : '<%=path%>/sysdict/cpx',
beforeSend:function(){
indeks = top.layer.load(1, {
  shade: [0.1,'#000'] //0.1透明度的白色背景
});
},
complete:function(){
top.layer.close(indeks);
},
success : function(data) {
$("#lineCode").append("<option value='' style ='color:#ccc'></option>");
$.each(data, function(index, content){
$("#lineCode").append("<option value="+content.code+" style ='color:#ccc'>"+content.name+"</option>");
})
},
error:function(){ }
layer.alert('Failed to initialize product line drop-down box');

});

});

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326659904&siteId=291194637