html – 即使没有SUBMIT按钮,谷歌浏览器也会提交表单

前端之家收集整理的这篇文章主要介绍了html – 即使没有SUBMIT按钮,谷歌浏览器也会提交表单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当在谷歌浏览器中查看时,我的一个页面中出现了这个错误/特征,所以我写了一个看起来像这样的测试页面 @H_301_2@<body> <form action="loginhandler.PHP"> <input type="text" id="name"> <input type="text" id="lastname"> <input type="button" value="Login"> </form> </body>

在这里你可以看到,输入类型不是提交类型.因此,如果你在IE,Firefox,Opera上按ENTER键,没有任何反应,这是预期的行为.
但是如果你在chrome上按Enter键,无论输入类型是否提交,它都会提交.

我的问题,这是chrome的默认功能/错误还是我在这里做错了什么. ?

解决方法

引用HTML5规范的4.10.21.2节:

“If the form has no submit button,
then the implicit submission mechanism
must just submit the form element from
the form element itself.”the form element itself.”

因此我认为Chrome的行为是正确的,尽管我认为其他浏览器也会这样做.您可以通过收听“提交”(例如阻止它)事件来捕获/阻止/处理表单提交.BlockquoteBlockquotet表单元素本身.“

原文链接:https://www.f2er.com/html/242654.html

猜你在找的HTML相关文章