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;
}

 

easyui select 下拉框的取值和赋值

 

 

 2.赋值

$("selectId").combobox('setValue',value);

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-27
  • 2022-01-15
  • 2021-07-29
  • 2021-11-22
  • 2022-12-23
  • 2021-10-28
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案