ブラウザでの表示 | ソースファイル |
同じフォルダにあるホームページのファイル名を入力します。 ここでは pass.htm を入力して、送信ボタンをクリックしてください。 |
<html> <head> <script language="javascript"> <!-- function pass(pwd){ location.href = pwd; } //--> </script> </head> <body> <center> <form> パスワード:<input type="password" name="passwd"> <input type="button" value="送信" onClick="pass(passwd.value)"> </form> </center> </body> </html> |