HTML5中input输入框的种类

Posted 翱翔天地

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML5中input输入框的种类相关的知识,希望对你有一定的参考价值。

1、问题背景

     input输入框从html5版本开始,有多少种类型


2、实现源码

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>input输入框类型</title>
		<style>
			input
				width: 200px;
				font-family: "微软雅黑";
				font-size: 14px;
			
		</style>
	</head>
	<body>
		<div>
			<input type="button" value="查询"/><br><br>
			<input type="checkbox" /><br><br>
			<input type="color" /><br><br>
			<input type="date" /><br><br>
			<input type="datetime" /><br><br>
			<input type="email" /><br><br>
			<input type="file" /><br><br>
			<input type="hidden" /><br><br>
			<input type="image" /><br><br>
			<input type="month" /><br><br>
			<input type="number" /><br><br>
			<input type="password" value="密码"/><br><br>
			<input type="radio" /><br><br>
			<input type="range" /><br><br>
			<input type="reset" value="重置"/><br><br>
			<input type="search" /><br><br>
			<input type="submit" value="提交"/><br><br>
			<input type="tel" /><br><br>
			<input type="text" /><br><br>
			<input type="time" /><br><br>
			<input type="url" /><br><br>
			<input type="week" />
		</div>
	</body>
</html>

3、实现结果



4、实例说明

(1)button:按钮

(2)checkbox:复选框

(3)color:颜色

(4)date:日期

(5)datetime:日期时间

(6)email:电子邮件

(7)file:文件

(8)hidden:隐藏域

(9)image:图像

(10)month:月份

(11)number:数字

(12)password:密码

(13)radio:单选按钮

(14)range:范围

(15)reset:重置

(16)search:搜索

(17)submit:提交

(18)tel:电话号码

(19)text:文本域

(20)time:时间

(21)url:路径

(22)week:星期

以上是关于HTML5中input输入框的种类的主要内容,如果未能解决你的问题,请参考以下文章

移动端HTML5页面端去掉input输入框的白色背景和边框(兼容Android和ios)

HTML5表单中password输入框的文字显示与隐藏实现

html5中form表单新增属性以及改良的input标签元素的种类

HTML5中input元素新增加哪些type属性值?它们有啥作用?

HTML5中input背景提示文字(placeholder)的CSS美化

jsp中一个输入框,如何把输入框的默认值value设为当前日期yyyy-mm-dd ?