<button type="button" name="theButton">SUBMIT</button>
和<input type="submit" value="SUBMIT" name="theButton" />
另外,您可以使用<button type="submit" name="theButton">SUBMIT</button>
吗?
答案 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中的错误除外)