2.2.3HTML网页之form表单c
描述:HTML5 新特性
在form表单中,使用HTML5版本的标签
主要介绍H5的新特性
日期 date 数字 number 颜色 color 邮箱 email @
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<form action="" method="get">
<p>
<!--日期-->
日期:<input type="date" name="date" id="" value="" />
</p>
<p>
数字:<input type="number" name="" id="" value="" />
</p>
<p>
颜色:<input type="color" name="" id="" />
</p>
<p>
邮箱:<input type="email" name="" id="" />
</p>
<!--按钮-->
<p>
<input type="submit" name="" id="" value="提交" />
<input type="reset" name="" id="" value="重置" />
<input type="button" name="" id="" value="普通按钮" onclick="alert('陶慧杰最美,不管她就是最美的!')" />
</p>
</form>
</body>
</html>