input 引入插件说明
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<form action="hello" method="post" target="_blank" enctype="multipart/form-data" >
<!-- action这个属性是选择要提交的网页,Javaweb中的实例对象,就它@WebServlet("/hello") -->
<!-- method 属性选择提交方式是get还是post,post打数据提交用post,post隐藏式提交 -->
<!-- target属性选择页面每次打开的方式 _blank每次都打开新的窗口-->
<!-- enctype数据提交类型multipart/form-data提交文件到服务器 -->
<input type="file">
<!--上传文件选择键,enctype使用时必须引入这个属性 -->
<label>时间<label><input type="date" value="2019-05-22">
<!-- label表单文本 date时间类型年月日 value默认时间 -->
<input type="range"value="1" max="10" min="1">
<!-- range左右滑动 可以设置最大值最小值 -->
<label>checkbox::</label><input type="checkbox" value="java" />java
<!-- checkbox多选框 value是要带给Web服务器的值 后面的值是作为显示的-->
<label>radio::</label><input type="radio" value="java" name="c" />java
<!-- radio 单选框 value是要交给Web服务器的值,后面的值是作为显示的 ,名字必须一致要不然就成了多选-->
</form>
</body>
</html>
input按钮说明
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<input type="submit" />
<!-- submit这个属性很重要向服务器提交表单唯一按钮 -->
<input type="reset" />
<!-- reset 重置表单数据按钮,数据进行清空按钮 -->
<input type="button" />
<!-- button 普通按钮 感觉没啥用 -->
</body>
</html>
文本说明`
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<!-- name属性是给服务器来取值使用的 -->
<input type="text" name="name"><br>
<!-- 普通的文本格式 -->
<input type="password" name="password" ><br>
<!-- 密码格式 -->
<input type="number" name="number" value="1" max="100" min="1"><br>
<!-- 数字格式 -->
<input type="submit" />
</body>