HTML用ひながた > javascript 確認(alert)ボタン
Javascriptのalert機能による確認ボタンです。
OKを押すと、処理が先に進み、キャンセルを押すと、処理が中断します。
実行例 (フォームタグの場合)
※OKを押すとAHREF TOPへジャンプします。
ソース (フォームタグの場合)
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> <title>確認(alert)ボタン HTML用ひながた -ahref.org-</title> </head> <body bgcolor="white"> <form action="http://www.ahref.org/" method="get"> <input type="submit" name="submit" value="送信" onclick="return confirm('AHREFへジャンプしますか?')"> </form> </body> </html> |
実行例 (リンクタグ:Aタグの場合)
送信
※OKを押すとAHREF TOPへジャンプします。
ソース(リンクタグ:Aタグの場合)
<html> <head> <meta http-equiv="content-type" content="text/html;charset=x-sjis"> <title>確認(alert)ボタン HTML用ひながた -ahref.org-</title> </head> <body bgcolor="white"> <a href="http://www.ahref.org/" onclick="return confirm('AHREFへジャンプしますか?')">送信</a> </body> </html> |