input用法

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
<!-- color选色器
date日期选择器
datetime-local选择一个日期和时间
email自动验证输入值是否email
month选择一个月
number输入的值为数字
{
    min最小值
    max最大值
    step规定每段数字间隔
}
range类型包含一定范围内数字值输入域
{
    min最小值
    max最大值
    step规定每段数字间隔
}
search搜索域
time选择一个时间
week选择周和年
url
-->
<input type="color"><br/>
<input type="date"><br/>
<input type="search"><br/>
<input type="datetime-local"><br/>
<input type="email"><br/>
<input type="month"><br/>
<input type="number"><br/>
<input type="time"><br/>
<input type="week"><br/>
</body>
</html>

 

posted @ 2021-08-09 07:51  zjxgdq  阅读(55)  评论(0编辑  收藏  举报