$("#regCmbProvince").combobox( { onLoadSuccess: function () { $(this).combobox("select", "所在省"); }, onSelect: function (record) { $.ajax({ type: "GET", url: "/admin/api/v1.0/prefecture", dataType: "json", data: record, success: function (data, status, xhr) { console.log(data, status, xhr) $("#regCmbCounty").combobox("reload") if (status == "success") { if (data == null) { $("#regCmbPrefecture").setValue(record) } else { $("#regCmbPrefecture").combobox("loadData", data) } } else { console.log(data["msg"]); }
}, error: function (xhr, resp, text) { console.log(xhr, resp, text); } }); } } )
|