<button type="button" name="theButton">SUBMIT</button>
と<input type="submit" value="SUBMIT" name="theButton" />
の間に大きな違いはありますか
また、<button type="submit" name="theButton">SUBMIT</button>
を使用できますか?
ここにページがあります 違いを説明します(基本的にはhtmlを<button></button>
に入れることができます
および他のページ 人々が<button></button>
を避ける理由を説明する(ヒント:IE6)
参照: <button> vs. <input type = "button" />。どちらを使用しますか?
こちらもご覧ください ボタンに関するスライドショー 。
<button type="button" name="theButton">SUBMIT</button>
フォームを送信しません(一部のブラウザのバグは別として)
<input type="submit" value="SUBMIT" name="theButton" />
フォームを送信します。
また、
<button type="submit" name="theButton">SUBMIT</button>
を使用できますか?
フォームを送信しますが、値がありません(IE脇のバグ)