标签:允许 height nload findall text bsp select asc name
<script type="text/javascript">
$("#areaCombobox").combobox({
url: "${pageContext.request.contextPath}/areaAction_findAllArea.action", //获取后台动作方法返回的json数据
valueField: ‘id‘,
textField: ‘name‘,
panelHeight: "auto",
editable: false, //不允许手动输入
onLoadSuccess: function () { //数据加载完毕事件
var data = $(‘#areaCombobox‘).combobox(‘getData‘);
if (data.length > 0) {
$("#areaCombobox").combobox(‘select‘, data[0].name);
}
}
});
</script>
标签:允许 height nload findall text bsp select asc name
原文地址:http://www.cnblogs.com/xubing520/p/7278321.html