我的页面有多行,每行有一个复选框和一个选择框,但是如果选中任何情况复选框但是选择框不是选择那么请显示消息。
$(document).ready(function() {
$("#myForm").validate({
rules: {
myDropDown: {
required: function(element) {
if ($("#myCheckbox").is(':checked')) {
var e = document.getElementById("myDropDown");
return e.options[e.selectedIndex].value == "";
} else {
return false;
}
}
}
}
});
});