<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head> <title>1-1表单验证</title> <script type="text/javascript" charset="UTF-8" src="../表单验证/js/yanzheng.js"> </script></head><body> <form action="#" onsubmit="return verify();" method="post"> <table> <tr> <th>用户名:</th> <td > <input type="text" name="userId" id="userId"> </td> </tr> <tr> <th>密码:</th> <td> <input type="password" name="pwd" id="pwd"> </td> </tr> <tr> <th>重复密码:</th> <td> <input type="password" name="repetitionPwd" id="repetitionPwd"> </td> </tr> <tr> <th>性别:</th> <td> <input type="radio" name="age" value="男"> 男 <input type="radio" name="age" value="女"> 女 </td> </tr> <tr> <th>真实姓名:</th> <td> <input type="text" name="userName" id="userName"> </td> </tr> <tr> <th>昵称:</th> <td> <input type="text" name="nickname" id="nickname"> </td> </tr> <tr> <th>关联手机号:</th> <td> <input type="text" name="cellphone " id="cellphone"> </td> </tr> <tr> <th>绑定邮箱:</th> <td> <input type="text" name="eMail" id="eMail"> </td> </tr> <tr> <td><input type="submit" value="提交"> </td> </tr> </table> </form></body></html>