我使用此代码验证输入文本和输入复选框。但我想将选择框验证添加到所需的功能。我希望用户必须选择一个字符串并选择框填充。
required:{
set:function(val) {
//Check the type of the input
switch(this.tagName) {
case 'INPUT':
if($(this).attr('type') == 'text') {
val = $.trim(val);
if(val === '') {
return false;
}else {
return true;
}
}else if($(this).attr('type') == 'checkbox') {
return $(this).is(':checked') ? true : false;
}
break;
default:
return false;
break;
}
},
message:'This field is required.'
},
但我不知道添加代码的内容和位置。