<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>From表单</title>
<!-----
元素:textBox文本框
password密码框
textArea文本域
select下拉框
checkbox
radioButton
button
submit
reset
---->
</head>
<body>
<form id ="frmReg" action="regsucced.html" method="get">
<table border='1' width='500px' align="center">
<tr><td colspan='3' align="center"><h2>用户注册</h2></tr>
<tr><td>用户名:</td>
<td><input type="text" id="txtName" name="txtName"/></td><td></td></tr>
<tr><td>密码</td>
<td><input type="password" id="txtpwd" name="txtpwd"/></td><td></td></tr>
<tr><td>确认密码:</td><td>
<input type="password" id="txtpwdconfirm" name="txtpwdconfirm"></td><td></td></tr>
<tr><td>性别:</td><td>
<input type="radio" value="男" name="gender" checked/>男
<input type="radio" value="女" name="gender"/>女
</td><td></td></tr>
<tr><td>爱好:</td><td>
<input type="checkbox" name="hobby" value="跳舞"/>跳舞
<input type="checkbox" name="hobby" value="睡觉"/>睡觉
<input type="checkbox" name="hobby" value="打豆豆"/>打豆豆
</td><td></td></tr>
<tr><td>地址:</td><td>
<select id="seladd" name="seladd">
<option value="-1">-----请选择-----</option>
<option value="xx">xx</option>
<option value="xx">xx</option>
<option value="xx">xx</option>
</select>
</td><td></td></tr>
<tr><td>头像:</td><td>
<input type="file" id="fphoto" name="fphoto">
</td><td></td></tr>
<tr><td>备注:</td><td>
<textarea id="txtremark" name="txtremark" rows="5">
</textarea>
</td><td></td></tr>
<tr><td colspan="3" align="center">
<input type="submit" name="btnsave" value=" 提交 "/>
<input type="reset" name="btnquery" value=" 重置 ">
</td></tr>
</table>
</form>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>From表单</title>
<!-----
元素:textBox文本框
password密码框
textArea文本域
select下拉框
checkbox
radioButton
button
submit
reset
---->
</head>
<body>
<form id ="frmReg" action="regsucced.html" method="get">
<table border='1' width='500px' align="center">
<tr><td colspan='3' align="center"><h2>用户注册</h2></tr>
<tr><td>用户名:</td>
<td><input type="text" id="txtName" name="txtName"/></td><td></td></tr>
<tr><td>密码</td>
<td><input type="password" id="txtpwd" name="txtpwd"/></td><td></td></tr>
<tr><td>确认密码:</td><td>
<input type="password" id="txtpwdconfirm" name="txtpwdconfirm"></td><td></td></tr>
<tr><td>性别:</td><td>
<input type="radio" value="男" name="gender" checked/>男
<input type="radio" value="女" name="gender"/>女
</td><td></td></tr>
<tr><td>爱好:</td><td>
<input type="checkbox" name="hobby" value="跳舞"/>跳舞
<input type="checkbox" name="hobby" value="睡觉"/>睡觉
<input type="checkbox" name="hobby" value="打豆豆"/>打豆豆
</td><td></td></tr>
<tr><td>地址:</td><td>
<select id="seladd" name="seladd">
<option value="-1">-----请选择-----</option>
<option value="xx">xx</option>
<option value="xx">xx</option>
<option value="xx">xx</option>
</select>
</td><td></td></tr>
<tr><td>头像:</td><td>
<input type="file" id="fphoto" name="fphoto">
</td><td></td></tr>
<tr><td>备注:</td><td>
<textarea id="txtremark" name="txtremark" rows="5">
</textarea>
</td><td></td></tr>
<tr><td colspan="3" align="center">
<input type="submit" name="btnsave" value=" 提交 "/>
<input type="reset" name="btnquery" value=" 重置 ">
</td></tr>
</table>
</form>
</body>
</html>

被折叠的 条评论
为什么被折叠?



