表单验证失败但提交页面
我有一个使用 GET 作为方法的表单。我想对表单进行一些js验证。我使用 Firefox 绑定事件,
document.forms[0].onsubmit = function(){return myObj.myFrm.isFormValid();}.
第一次单击“提交”时它会起作用,但过了一会儿,如果我再次单击它,即使我没有更改数据,表单也会提交。
有什么想法吗?
I have a form which uses GET as the method. I want to do some js validation on the form. I bind the event using
document.forms[0].onsubmit = function(){return myObj.myFrm.isFormValid();}.
In Firefox it works the first time I click on submit but after a while if I click it again the form submits even though I've not changed and data.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单地添加事件处理程序并不能阻止它提交。
您需要添加
preventDefault();
(文档)
Simply adding an event handler doesn't stop it from submitting.
You need to add in
preventDefault();
(Documentation)