web-dev-qa-db-ja.com

ボタンと入力の違いは?

<button type="button" name="theButton">SUBMIT</button><input type="submit" value="SUBMIT" name="theButton" />の間に大きな違いはありますか

また、<button type="submit" name="theButton">SUBMIT</button>を使用できますか?

29
DarkLightA

ここにページがあります 違いを説明します(基本的にはhtmlを<button></button>に入れることができます

および他のページ 人々が<button></button>を避ける理由を説明する(ヒント:IE6)

参照: <button> vs. <input type = "button" />。どちらを使用しますか?

こちらもご覧ください ボタンに関するスライドショー

13
Zain Shaikh

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

フォームを送信しません(一部のブラウザのバグは別として)

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

フォームを送信します。

また、<button type="submit" name="theButton">SUBMIT</button>を使用できますか?

フォームを送信しますが、値がありません(IE脇のバグ)

2
Quentin