jquery 的combobox 处理级联

随笔---jquery 的combobox 处理级联

------------------------html-------------

<select id="groupId" name="groupId" style=" 123px;">
</select>

--------------------------js------------------------

$(document).ready(function() {
$('#groupId').combobox({
valueField : 'key',
textField : 'value',
mode:'remote',
url : 'xxxxx.do?method=xxxx',  //数据源
panelHeight : 'auto',
onChange:function(newValue,oldValue){ //级联时间  动态及联
$.ajax({
type:"POST",
url:"xxxx.do?method=xxx&xx="+xxx, //级联数据源
dataType:"json",
async:false,
error:function(XMLHttpRequest, textStatus, errorThrown){
alert("error");
},
success:function(data,textStatus){//成功 赋值显示
        //TODO
}
});
}
});
$('#valid').combobox({
disabled : false,
panelHeight : 'auto'
});
});    
原文地址:https://www.cnblogs.com/sicd/p/4078079.html