一、input的样式
type | 作用 |
---|---|
button | 按钮 |
text | 默认文本 |
radio | 单选 |
checkbox | 复选框 |
submit | 提交 |
password | 密码 |
reset | 重置 |
color | 颜色 |
number | 数字 |
file | 上传文件 |
url | 网址 |
邮箱 | |
tel | 手机号 |
search | 搜索框 |
date | 日期 |
range | 滑块 |
time | 时间 |
month | 月 |
week | 周 |
二、常用样式效果
1.文本
<input type="text">
<!--用于网页搜索框--!>
实例
2.按钮
<input type="button">
<!--用于网页交互键--!>
实例
3.文件
<input type="file">
<!--用于网页文件传互--!>
实例
4.数字
<input type="number">
<!--指定用户输入纯数字--!>
实例