按钮和输入框之间的区别是什么?

34

<button type="button" name="theButton">SUBMIT</button><input type="submit" value="SUBMIT" name="theButton" />之间有主要的区别吗?

此外,您可以使用<button type="submit" name="theButton">SUBMIT</button>吗?

2个回答

14

2

<button type="button" name="theButton">提交</button>

不会提交表单(忽略一些浏览器中的错误)。

<input type="submit" value="提交" name="theButton" />

将提交表单。

还可以使用 <button type="submit" name="theButton">提交</button> 吗?

将提交表单,但没有值(忽略IE中的错误)。


1
关于类型为submit的按钮,该bug出现在IE7及以下版本中,即将按钮的inner HTML设置为其值...在IE8中已修复。 - Shadow The Spring Wizard

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接