フォームの送信先をボタンごとに変更するには

HTMLにおいて、ひとつの入力フォームに対して複数のボタンがあり、ボタンによって送信先を変更したい場合はformaction属性を使います。

<form method="GET" action="001.html">
<p>
hoge:<input type="text" name="foo">
</p>
<p><input type="submit" value="Button01"></p>
<p><input type="submit" value="Button02" formaction="002.html"></p>
</form>

Button01を押すとフォームの内容は"001.html"へ送信され、Button02を押すと"002.html"へ送信されます。

以上。

参考URL
http://uhyohyo.sakura.tv/html/5_3.html

Leave a Reply

Your email address will not be published. Required fields are marked *