给表单批量添加验证
Form表单的ID
var self = $("#FormID");
表单验证内容
function ValiForm(self) { var res = true; self.find(‘.required‘).each(function () { if (!$(this).val()) { $(this).prop(‘required‘, true); $(this).css(‘border-color‘, ‘red‘); res = false; } else { $(this).css(‘border-color‘, ‘#ccc‘); } }); return res; }