单击页面上的任何按钮时,表单会在 FireFox 中提交

发布于 2024-08-25 10:53:03 字数 415 浏览 8 评论 0原文

第一次使用 Asp.net-mvc,最初遵循 NerdDinner 教程。我的表单提交按钮如下所示:

<p>
    <input type="submit" value="Save" />
</p>

我现在已向页面添加了另一个按钮,并附加了 jQuery 代码。它在 IE 中工作,但是当我在 FireFox 中测试时,表单会提交。我尝试添加另一个按钮,这次没有附加 jQuery 代码,同样的事情发生了。单击该按钮后,表单就会提交。

<button id="random-button">Do Nothing</button>

为什么标准 button 元素在 Firefox 中提交表单?

First time using Asp.net-mvc and originally followed the NerdDinner tutorial. My form submit button looks like this:

<p>
    <input type="submit" value="Save" />
</p>

I've now added another button to the page with jQuery code attached. It works in IE, but when I test in FireFox the form submits. I tried adding another button, this time with no attached jQuery code and the same thing happens. When the button is clicked, the form submits.

<button id="random-button">Do Nothing</button>

Why does the standard button element submit the form in Firefox?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

第几種人 2024-09-01 10:53:03

我记得 Firefox 默认有一个

 <button type="button" id="random-button">Do Nothing</button>

它应该可以解决你的问题。

I recall that Firefox defaults a <button> to a submit button. If you use

 <button type="button" id="random-button">Do Nothing</button>

it should solve your problems.

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