我正在使用 jquery.validate 检查我的表单是否有错误,并且我正在尝试获取引发错误的元素的 id。
这是我的基本工作代码,希望从中可以清楚我所追求的:
function customError(){
alert("this is where I want the element ID");
}
function submitForm($form){
$form.validate({
required: customError(),
errorPlacement: function(error, element) {},
submitHandler: function(){
alert("submited");
}
});
}