0
我使用表單驗證程序plugin來驗證我的表單。在ajax post上使用jQuery Form Validator驗證表單()
如果我沒有使用jQuery post方法提交數據,它工作正常。 關於使用jQuery發佈,它沒有驗證提交時的表單。
我的代碼是
<form action="UpdatedProfile" method="post" name="updateprofile" id="UpdatedProfile" class="form-horizontal">
<div class=" form-group ">
<div class="col-lg-2">
<label>First Name</label>
</div>
<div class="col-lg-4">
<input type="text" name="fname" cssClass="form-control" data-validation="required" data-validation-error-msg="First Name is required"/>
</div>
</div>
</form>
<script>
$(document).ready(function() {
$.validate();
$(document).on('click', '#submit', function (event) {
event.preventDefault();
console.log($('#UpdatedBasicProfile').serialize());
$.post("Updated", $('#UpdatedProfile').serialize(), function (data)
{....});
});
});
</script>
如何實現這一目標?
我認爲你與validate()和valid()混淆。 [有效與驗證](http://stackoverflow.com/questions/17404188/valid-vs-validate) –