easyui 判断select下拉框是否多选,多选情况下清空默认值

$("#checkType").combobox({
                onSelect: function(param){
                     if (param.value > -1){
                       $(this).combobox("unselect", -1);
                     }else{
                         $(this).combobox("setValue",-1);
                     }
                },
            });


你可能感兴趣的:(编程技术,easyui,jquery)