按钮和输入之间的区别?
和
另外,您可以使用吗?
Are there any major differences between <button type="button" name="theButton">SUBMIT</button>
and <input type="submit" value="SUBMIT" name="theButton" />
Also, can you use <button type="submit" name="theButton">SUBMIT</button>
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个描述差异的页面(基本上你可以将 html 放入
还有另一个页面< /a> 描述为什么人们避免
(提示:IE6)
参考:
另外看看这个 关于按钮的幻灯片。
Here's a page describing the differences (basically you can put html into a
<button></button>
And an other page describing why people avoid
<button></button>
(Hint: IE6)Reference: <button> vs. <input type="button" />. Which to use?
Also have a look at this slideshow about button.
不会提交表单(除了某些浏览器中的错误)
将提交表单。
将提交表单,但没有值(IE 中的错误除外)
Won't submit a form (bugs in some browsers aside)
Will submit a form.
Will submit a form, but doesn't have a value (bugs in IE aside)