例子:
<tr> <th width="100">性别</th> <td><select name="sex" id="sex" style="width:150px;"class="easyui-combobox" data-options="editable:false"> <option value="1" <c:if test="$('#sex').val()==1">selected="selected"</c:if>>男</option> <option value="2"<c:if test="$('#sex').val()==2">selected="selected"</c:if>>女</option> </select> </td> </tr>
如果是这种得,取值赋值:
$('#sex').combobox('setValue', '1'); //赋值
$('#sex').combobox('getValue'); //取值
如果是通过数据字典加载得下拉框取值如下:
//加载民族 $("#nationId").combobox({ width : 150, editable : false, url : "caSysDictController.do?getDictList&dictCode=MZ", valueField : 'id', textField : 'dictName' }); <th>民族</th> <td><input name="nationId" id="nationId" style="width:150px;" class="easyui-validatebox" data-options="editable:false" /> </td>
取值和赋值:
$('#sex').combobox('getValue'); //取值
//赋值
$("#nationId") .combobox( { width : 150, editable : false, url : "caSysDictController.do?getDictList&dictCode=MZ", valueField : 'id', textField : 'dictName', value : row.nationId //这里就是赋值。是你加载数据字典得值 });