0
我正在構建一個使用jquery mobile的小應用程序,並使用jqueryvalidate http://jqueryvalidation.org/進行表單驗證。我設法使用ajax進行工作,但只要我將它移入submitHandler:function(form),它仍然「有效」,但我必須單擊「提交」兩次以使其正常工作?請幫我困惑!
//the validation stuff
$().ready(function() {
// validate new id form
$("#addId").validate({
errorPlacement: function(error, element) {
error.insertAfter(element.parent()); // <- make sure the error message appears after parent element (after textbox!)
},
rules: {
idDesc: "required",
},
messages: {
idDesc: "Please enter a valid description",
},
submitHandler: function(form) {
$('#submit').click(function()
{
$('#addCustId').popup('close');
$.post("Customer_AddNewCustomerId.php", $("#addId").serialize(), function(response)
{
LoadCustomerIdentificationType();
});
});
}
}); //end validate
}); // end function
謝謝:)
啊我看到這讓人更有意義!非常感謝,你的回答完美無缺:) – Janey