如何在提交时进行 ajax 调用,并确保 html5 验证也发生
<form action="someurl" method="post" class="form-horizontal" >
<input type="text" id="name" required placeholder="Name" pattern="[a-zA-Z]+">
<input type="text" id="description" required placeholder="Description">
<button type="submit" class="btn btn-primary">Edit Category</button>
</form>
我知道如何进行 ajax 调用。我只想知道应该如何处理提交按钮,以便进行验证以及 ajax 函数
就像我不在这里使用哪种 jquery 方法一样。我在 twitter 引导模式中显示这些表单。
我得到了我实际尝试做的参考材料——http ://albertbori.com/ajax-form-validation-with-html5——但我做了同样的事情,但仍然没有用