有什么方法可以阻止 Firefox 在 Javascript 错误时提交表单吗? 也许在 about:config 中?
有什么方法可以阻止 Firefox 在 Javascript 错误时提交表单吗?
我的意思是我知道我可以使用警报框或萤火虫来阻止它这样做,但是......并非人们使用 Firebug 工作的所有页面,并且该警报框只是烦人......
也许有一个设置关于:配置? 我可以玩弄吗?
Is there any way to stop Firefox from submitting a form on a Javascript error?
I mean I know I can use an alert box or firebug to stop it from doing so, but...not all pages that people work on work with Firebug, and that alert box is just annoying...
Maybe there's a setting in about:config? I could twiddle with?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建一个返回 true(无错误)或 false(某些错误)的函数。 将提交处理程序添加到您的表单中:
现在,如果“yourFormCheckfunction”返回 false,则不会提交您的表单。
Create a function that returns true (no errors) or false (some error). Add a submit handler to your form:
Now, if 'yourFormCheckfunction' returns false, your form is not submitted.
使用 JavaScript 提交表单。 这样,如果脚本失败,它永远不会到达提交表单的行。
Submit the form using Javascript. That way if the script fails, it never gets to the line where it submits the form.