本帖最后由 哈利路亚er 于 2017-8-11 23:25 编辑
[HTML] 纯文本查看 复制代码 <html>
<head>
<title>杨信陵</title>
</head>
<body>
<h1>表单制作
</h1>
<
<form action="aa.html" method="get" enctype="multipart/form-data">
用户名:<input type="text" name="usename" value="匿名用户" size=16 maxLength=8 /><br><br>
密码:<input type="password" name="passwords" value="123456" maxlength="10"readOnly=true/><br><br>
用户类型:
<input type="radio" name="userType" value="teacher" checked=true >教师
<input type="radio" name="userType" value="student">学生<br><br>
你的意愿工作城市:
<input type="checkbox" name="city" value="BJ">北京
<input type="checkbox" name="city" value="TJ">天津
<input type="checkbox" name="city" value="HN">湖南
<input type="checkbox" name="city" value="GD">广东<br><br>
<input type="hidden" name="h" value="100">隐藏域
<br>
我要留言:
<input type="file" name="uploadfile">
提交:<input type="submit" value="登录"/><br><br>
<input type="reset" value="登出"/><br><br>
<a >免费登录</a><br><br>
<input type="button" value="普通按钮"/><br><br>
</form>
</body>
</html> |