html5新增加的input类型元素

来源:互联网 发布:工业数据采集的重要性 编辑:程序博客网 时间:2024/04/29 20:45
<!DOCTYPE html>
<html>
<head>
   <meta charset="utf-8" />
   <title>output</title>
</head>
<body> 
<form method="get">
<input type="number" /><br />
<input type="email" /><br />
<input type="date" /><br />
            <input type="text" /><br />
            <input type="tel" /><br />
            <input type="color" /><br />
            0<input type="range" name="range" />1000
            <input type="submit" value="提交" />
</body>    
</html>
0 0
原创粉丝点击