jquery select下拉框和 easy-ui combox 选定指定项区别
Posted lkjhgfdsa123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery select下拉框和 easy-ui combox 选定指定项区别相关的知识,希望对你有一定的参考价值。
jquey select
<select id="gender" name="sex11" >//不能加easy-ui标记 <option value="男">男</option> <option value="女">女</option> </select>
$(‘input[name=性别]‘).val(data.性别);//通过name属性选取 $(‘#gender‘).val(data.性别);//通过ID属性选取
easyui combox 选中
<select id="gender" name="sex11" class="easyui-combobox" >//必须加combox特殊标记 <option value="男">男</option> <option value="女">女</option> </select>
$(‘#gender‘).combobox(‘setValue‘, data.性别); $(‘#cbxCls‘).combobox(‘setValue‘, data.班级号);//可以通过ID来选
$(‘select[id=gender]‘).combobox(‘setValue‘, ‘女‘)
不能通过name属性来选 因为在网页执行前会被编译成textname
1 $(‘select[name=sex11]‘).combobox(‘setValue‘, data.性别);
表单选择器 :input :text :password :submit
表单过滤器:selected :checked
以上是关于jquery select下拉框和 easy-ui combox 选定指定项区别的主要内容,如果未能解决你的问题,请参考以下文章
Jquery学习笔记:操作form表单元素之一(文本框和下拉框)
Selectize是文本框和<;选择>;盒它';基于jQuery,具有自动完成和原生感觉的键盘导航功能;用于标记、联系人列表等。