Jquery.Validate验证CheckBoxList,RadioButtonList,DropDownList是否选中
//DropDownList验证方法
$.validator.addMethod('selectNone',
function(value,element){
returnthis.optional(element)||(value!=-1);
},"请选择至少一项!");
//ChekcBoxList验证方法
/*
$.validator.addMethod('atLeastOneChe