easyui select 下拉框的取值和赋值
Posted Mr_伍先生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui select 下拉框的取值和赋值相关的知识,希望对你有一定的参考价值。
1.取值
//拍卖管理中示例 function serializeForm(form) { var obj = { auclotType : $(\'#auclotType\').val(), goodsName : $(\'#goodsName\').val(), stage : $(\'#stage\').combobox(\'getValue\'), isPublished : $(\'#isPublished\').combobox(\'getValue\'), status : $(\'#status\').combobox(\'getValue\'), startDate : $(\'#startDate\').val(), endDate : $(\'#endDate\').val() }; return obj; }
2.赋值
$("selectId").combobox(\'setValue\',value);
以上是关于easyui select 下拉框的取值和赋值的主要内容,如果未能解决你的问题,请参考以下文章
jquery操作select下拉框的多种方法(选中,取值,赋值等)