formaction属性
button要素のformaction属性は、フォームデータ送信先URLを指定する属性。
ブラウザ対応 |
---|
構文
<button type="submit" formaction="URL">ボタン名</button>
URL
URLに指定出来る値。
- 絶対URL。例:
http://html5.cyberlab.info/sample.php
- 相対URL。例:
sample.php
要点
サンプルコード
<button type="submit" formaction="sample.php">送信</button>
<button formaction="sample.php">送信</button>
サンプル
HTMLソースコード
<form method="post" target="_blank"> <p> <label> 1行テキスト入力欄: <input name="sampleName"> </label> </p> <p> <button formaction="sample-button.php">type属性なし</button> <button type="submit" formaction="sample-button.php">送信ボタン</button> <button type="reset">リセットボタン</button> <button type="button">汎用ボタン</button> </p> </form>