通常ボタンのonclickイベントで画面遷移 「location.href」でアンカーのようにGETリクエスト送信できる。 下記のように「onclick」属性に指定すれば、ボタン押下で画面遷移できる。 <html> <head> </head> <body> <form name="frm" method="post" action="result.html"> <input type="button" onclick="location.href='result.html'" value="ボタン1" /> </form> </body> </html>
