2012-11-26 42 views
0

我正在使用jquery.validate檢查我的表單的錯誤,我試圖找到引發錯誤的元素的id。如何從自定義所需的函數使用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"); 
       } 
    }); 
} 

回答

1
... 
    errorPlacement: function (error, element) { 
     customError(element.attr('id')); 
    }, 
    ... 
+0

這一個嚴重的臉紅。這將教會我編碼的方式,以便在稍微睡一會兒之後。 – Finglish

相關問題