单击页面上的任何按钮时,表单会在 FireFox 中提交
第一次使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我记得 Firefox 默认有一个
它应该可以解决你的问题。
I recall that Firefox defaults a <button> to a submit button. If you use
it should solve your problems.