jquery 按钮 onclick 输入验证(不在表单提交上)
我有一个带有 action="autosave.php" 的表单。当单击 Enter 或按下提交按钮时,这将正常保存。
<input type="submit" id="save" value="Save Changes" />
我还使用 jquery autosave,它每 10 秒自动提交一次表单
$('form.checklist').autosave({interval:10000,......});
我的问题是,我想在表单上进行 jquery 验证,但我不希望它验证上述 3 个过程中的任何一个。
我只希望在单击按钮时进行验证。
<button class="ui-state-default ui-corner-all" onclick="location.href='submit.php'" type="button">Submit</button>
任何帮助将不胜感激。 提前致谢
I have a form with action="autosave.php". This saves as normal when enter is clicked or the submit button is pressed.
<input type="submit" id="save" value="Save Changes" />
I am also using jquery autosave, which automatically submits the form every 10 secs
$('form.checklist').autosave({interval:10000,......});
My problem is, i want to put jquery validation on the form, but i dont want it to validate for any any the above 3 processes.
I only want the validation to take place when a button is clicked.
<button class="ui-state-default ui-corner-all" onclick="location.href='submit.php'" type="button">Submit</button>
Any help would be appreciated.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)