23
HTMLフォームの複数の送信ボタン
HTMLフォームでウィザードを作成するとします。1つのボタンは戻る、もう1つは進む。を押すと、マークアップの最初に戻るボタンが表示されるので、Enterそのボタンを使用してフォームを送信します。 例: <form> <!-- Put your cursor in this field and press Enter --> <input type="text" name="field1" /> <!-- This is the button that will submit --> <input type="submit" name="prev" value="Previous Page" /> <!-- But this is the button that I WANT to submit --> <input type="submit" name="next" value="Next Page" …