表单验证失败但提交页面

发布于 2024-10-31 13:14:56 字数 234 浏览 8 评论 0原文

我有一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤独患者 2024-11-07 13:14:56

简单地添加事件处理程序并不能阻止它提交。

您需要添加 preventDefault();

文档)

Simply adding an event handler doesn't stop it from submitting.

You need to add in preventDefault();

(Documentation)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文