ajax jquery 树型下拉框

前端之家收集整理的这篇文章主要介绍了ajax jquery 树型下拉框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$.ajax({
url: '../../../../Function/Instance/Common/PartyBiz.asmx/GetOrgList',
type: 'POST',
data: { OrgType:1 },
dataType: 'html',
async: false,
success: function (res) {
var data = eval('(' + res + ')');
tree= $("#txtDW").ligerComboBox({
width: 180,
selectBoxWidth: 220,
selectBoxHeight: 200,textField : 'text',valueField :'id',treeLeafOnly:false,
tree: { data: data.Org,
idFieldName :'id',
parentIDFieldName :'pid',
checkBox : false

}
});
// $("#txtDW").ligerComboBox({
// onBeforeOpen: f_selectContact,width:150

});

注:此法下拉树不可折叠!!

法2:注释内容,事件绑定,在新窗口选择树,再返回内容

原文链接:https://www.f2er.com/ajax/166914.html

猜你在找的Ajax相关文章