H5新表单

来源:互联网 发布:蓝牙音响 知乎 编辑:程序博客网 时间:2024/05/13 01:24

<input type ="color"> 色块

<input type ="range"> 选取范围

<input type ="email"> 邮件

<input type ="number">数字选择框

<progress  value="59">进度条

<meter min="" max ="">网页进度条

<fieldset>><legend> 表单嵌套

 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <input type="color" name="" id="" value="" /> <input type="range" name="" id="" value="" /> <input type="email" name="" id="" value="" /> <input type="number" name="" id="" value="2" step="2"/> <progress value="20"max="100"></progress> <meter value="20" max="100"></meter> </body> </html>