各种类型input演示

<!doctype html>
<html lang="zh">
<head>
<meta charset="utf-8">
<title>各种类型input演示</title>
</head>
<body>
<label><input type="number"></label><!-- 数字输入框 -->
<label><input type="time"></label><!-- 时间(时:分)选择框 -->
<label><input type="search"></label><!-- 搜索关键字输入框 -->
<label><input type="range"></label><!-- 滑块条 -->
<label><input type="date"></label><!-- 日期(年/月/日)选择框 -->
<label><input type="week"></label><!-- 周选择框 -->
<label><input type="color"></label><!-- 颜色选择器 -->
</body>
</html>

Copyright © 2024 码农人生. All Rights Reserved