input中的一些type类型
button 按钮; text 默认文本;radio 单选;checkbox 复选框
submit 提交;password 密码;reset 重置;color 颜色;number 数字
file 上传文件;url 网址;email 邮箱;tel 手机号;search 搜索框
date 日期;range 滑块;time 时间;month 月;week 周
html表单中的几种属性
multiple可以上传多个文件,通常与file搭配使用-->
<--placeholder 表单的请示文字-->
<--required 表单输入不能为空-->
<--autofoucs 设置默认焦点-->
<--autocomplete 记录历史输入 on打开 off关闭-->
<--pattern 正则验证-->
<--min max 数字的值 通常与number和range-->
<--step数字的跳跃间隔-->
<--readonly 只读模式-->
<--disabled 禁用模式-->