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>
本文来自博客园,作者:zjxgdq,转载请注明原文链接:https://www.cnblogs.com/zjxzhj/p/15117032.html