- <html>
- <head>
- <title>討論區-會員註冊</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <script type="text/javascript">
- function check($form){
- //alert(window.document.form_register.ud_name.value);
- //alert($form.ud_name.value);
- var $ud_name = $form.ud_name.value; //取得使用者欄位的值
- var $ud_account = $form.ud_account.value; //取得使用者帳號的值
- var $ud_password = $form.ud_password.value; //取得使用者密碼的值
- if($ud_name==""){
- alert("請輸入使用者名稱!");
- $form.ud_name.focus();
- return false;
- }else if($ud_account==""){
- alert("請輸入帳號!");
- $form.ud_account.focus();
- return false;
- }else if($ud_password==""){
- alert("請輸入密碼!");
- $form.ud_password.focus();
- return false;
- }else{
- return true;
- }
- }
- </script>
- </head>
- <body>
- <fieldset>
- <legend>基本資料</legend>
- <form name="form_register" method="post" action="./process.php" onsubmit="return check(this);">
- 使用者:<input type="text" name="ud_name" /><br />
- 帳 號:<input type="text" name="ud_account" /><br />
- 密 碼:<input type="password" name="ud_password" maxlength="8" /><br />
- <input type="submit" name="send" value="註冊" />
- <input type="reset" value="重新設定" />
- <input type="hidden" name="page" value="register" /><!-- 隱藏欄位(傳到process.php頁面判斷) -->
- </form>
- </fieldset>
- </body>
- </html>
複製代碼 |