表单
------------恢复内容开始------------
普通文本框<input type="text">
密码文本框<input type="password">
单选文本框<input type="radio">
多选文本框<input type="checkbox">
提交按钮<input type="submit">
重置按钮<input type="reset">
无功能按钮<input type="butten">
其中包括各种属性,value表示当前值,name表示名字,id
新增表单的type类型
email 邮箱 <input type="Email">
url 网址 <input type="url">
search 站内搜索 <input type="search">
color 颜色 <input type="color">
tel 电话
number 数字
range 范围
mouth 月
week 周
date 日期
表单属性
value 表单输入框的类型
name 表单元素的名称
checked 默认被选中,一般配合单选和多选按钮使用
selected默认被显示,一般于option配合使用
disable 被禁用
readonly 只读
新增属性
placehoder 默认
require 必填
autofocus 自动获取焦点
minlength maxlength 最小最大长度
min max step 配合数字使用
------------恢复内容结束------------