0

我正在使用 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");
       }
    });
}
4

1 回答 1

1
   ... 
   errorPlacement: function (error, element) {
      customError(element.attr('id'));
    },
   ...
于 2012-11-26T14:28:44.333 回答