有什么方法可以阻止 Firefox 在 Javascript 错误时提交表单吗? 也许在 about:config 中?

发布于 2024-07-13 13:32:05 字数 165 浏览 3 评论 0原文

有什么方法可以阻止 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 技术交流群。

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

发布评论

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

评论(2

随梦而飞# 2024-07-20 13:32:05

创建一个返回 true(无错误)或 false(某些错误)的函数。 将提交处理程序添加到您的表单中:

<form [..] onsubmit = "return yourFormCheckfunction();">

现在,如果“yourFormCheckfunction”返回 false,则不会提交您的表单。

Create a function that returns true (no errors) or false (some error). Add a submit handler to your form:

<form [..] onsubmit = "return yourFormCheckfunction();">

Now, if 'yourFormCheckfunction' returns false, your form is not submitted.

海的爱人是光 2024-07-20 13:32:05

使用 JavaScript 提交表单。 这样,如果脚本失败,它永远不会到达提交表单的行。

Submit the form using Javascript. That way if the script fails, it never gets to the line where it submits the form.

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