2个回答
展开全部
1、在html定义:
<input class="easyui-combobox" name="type" id="type" data-options="url:'getType.do',textField:'text',valueField:'value'"/>
或者
<select class="easyui-combobox" name="type" id="type">
<option value="0">小于</option>
<option value="1">大于</option>
<option value="2">等于</option>
</select>
2、在js定义:
<input class="easyui-combobox" name="type" id="type"/> or <input name="type" id="type"/>
$("#type").combobox({
url : 'getType.do',//ajax请求某个后台获取数据
//data : [],//数组数据,类似于option,如[{text:"小于",value:0},{text:"大于",value:1},]
textField : 'text',//绑定的显示值
valueField : 'value'//绑定的提交到后台的值
});
<input class="easyui-combobox" name="type" id="type" data-options="url:'getType.do',textField:'text',valueField:'value'"/>
或者
<select class="easyui-combobox" name="type" id="type">
<option value="0">小于</option>
<option value="1">大于</option>
<option value="2">等于</option>
</select>
2、在js定义:
<input class="easyui-combobox" name="type" id="type"/> or <input name="type" id="type"/>
$("#type").combobox({
url : 'getType.do',//ajax请求某个后台获取数据
//data : [],//数组数据,类似于option,如[{text:"小于",value:0},{text:"大于",value:1},]
textField : 'text',//绑定的显示值
valueField : 'value'//绑定的提交到后台的值
});
展开全部
虽然我说了你,可能你不会选我,但我还是要说:你不会看api吗??????
1 2 3 4 5 6 7 8 9 10 | <input id= "cc" name= "dept" value= "aa" > ---------------------------------------- $( '#cc' ).combobox({ url: 'combobox_data.json' , valueField: 'id' , textField: 'text' }); |
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询