表单是什么
jsp里重点讲post和get
get实在uml里面显示表单信息 post则是隐藏
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登陆注册</title>
</head>
<body>
<h1>注册</h1>
<!-- 表单form
action:表单提交的位置,可以是网站,也可以是一个请求处理地址
method :post ,get 提交方式;
get方式提交:我们可以在url中看到我们提交的信息,不安全,高效
post方式:比较安全,传输大文件,
get是在uml里面显示表单信息 post则是隐藏
value="基哥好帅" 默认初始值
maxlength="8" 最长能写几个字符
size="8" 文本框的长度
-->
<form action="1.我的第一个网页.html" method="get">
<!-- 文本输入框 input type="text"-->
<p>名字: <input type="text" name="username" value="基哥好帅" maxlength="8" size="8"></p>
<!-- 密码框: input type="password" -->
<p>密码: <input type="password" name="pwd"></p>
<!-- 单选框标签 必须要写上value 和相同组名name
input type="radio"
value=单选框的值
name=组
-->
<p>性别
<input type="radio" value="boy" name="sex"/>男
<input type="radio" value="girl" name="sex"/>女
</p>
<p><input type="submit">
<!-- submit提交 -->
<input type="reset"></p>
<!-- reset 重置 -->
<!-- type:checkbox(多选框) radio(单选框) hidden(隐藏的) -->
<!-- value 元素的初始值。type为radio时必须指定一个值 -->
<!-- size 指定表单元素的初始宽度。当type为text或password时,表单元素的大小一字符为单位。对于其他类型,宽度以像素为单位 -->
<!-- checked type为radio或checkbox时,指定按钮是否被选中 -->
<!-- maxlength type为test或password时,输入的最大字符数-->
</form>
</body>
</html>