検証の際にselect要素を囲むdivをdivに追加する必要があります。jQuery ValidateのinvalidHandlerイベントの使用
$("#Form").validate({
invalidHandler: function (form, validator) {
$("[id$='_DropDownList']").each(function() {
// How do I figure out if $(this) is valid or invalid?
// Add the class below if invalid.
$(this).parent().addClass("error");
});
}
});