按钮和输入之间的区别?

时间:2010-12-20 09:24:16

标签: html forms button input submit

  

可能重复:
  <button> vs. <input type=“button” />. Which to use?

<button type="button" name="theButton">SUBMIT</button><input type="submit" value="SUBMIT" name="theButton" />

之间是否存在重大差异?

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

2 个答案:

答案 0 :(得分:12)

Here's a page描述了差异(基本上你可以将html放入<button></button>

And an other page描述人们为什么要避免<button></button>(提示:IE6)

参考:<button> vs. <input type="button" />. Which to use?

另请查看此slideshow about button

答案 1 :(得分:2)

  

<button type="button" name="theButton">SUBMIT</button>

不会提交表单(某些浏览器中的错误除外)

  

<input type="submit" value="SUBMIT" name="theButton" />

将提交表格。

  

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

将提交表单,但没有值(IE中的错误除外)