ホームページ > 記事 > ウェブフロントエンド > ああ、小さな HTML ページです。送信方法を常に要求する関数 error_html/css_WEB-ITnose
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>注册页面</title><script type="text/javascript"> function checked(){ var loginname = document.getElementById("loginname").value; if(loginname == ""){ alert("用户名不能为空"); return false; } var password = document.getElementById("password").value; if(password == ""){ alert("密码不能为空"); return false; } document.loginform.submit(); }</script></head><body><center> <h2>注册新用户</h2> <form method="post" name="regist" action="login" id="loginform"> <table border="0"> <tr> <td>用户名</td> <td><input type="text" id="loginname" name="loginname"/></td> </tr> <tr> <td>密 码</td> <td><input type="password" id="password" name="password"/></td> </tr> <tr id="sex"> <td>男:<input type="radio" value="男" name="sex" /></td> <td>女:<input type="radio" value="女" name="sex" /></td> </tr> <tr> <td>年 龄:</td> <td><input type="text" id="age" name="age" /></td> </tr> <tr> <td><input type="reset" value="重置"/></td> <td><input type="button" value="确认" onclick="checked();" /></td> </tr> </table> </form></center></body></html>
関数名を変更してください。
名前を変更します。そうでない場合は、チェックボックスまたはラジオボタンの属性がオンになっていると思いますか?
作成者は、チェックされた、、、、これらは予約文字ですので使用しないでください。 。 。