HTML5

≡放荡痞女 提交于 2019-12-06 05:12:36

一:属性

1、input新增的属性,有些浏览器支持,有些不支持,使用在form表单里面
     <form action="">
            <input type="date">//显示年月日<!--chrome支持,Safari,IE不支持-->
            <input type="time">//显示早中晚+几点<!--chrome支持,Safari,IE不支持-->
            <input type="week">//显示年+第几周<!--chrome支持,Safari,IE不支持-->
            <input type="datetime-local">//显示年月日,早中晚+几点<!--显示时间和日期,chrome支持,Safari,IE不支持-->
            <input type="number">//<!--chrome支持,Safari,IE不支持-->
            <input type="email">//<!--chrome,火狐支持,Safari,IE不支持-->
            <input type="color">//<!--chrome支持,Safari,IE不支持-->
            <input type="range" min="1" max="100">//<!--chrome,Safari支持,火狐IE不支持-->
            <input type="search">//<!--chrome支持,Safari支持一点,IE不支持-->
            <input type="url">//<!--chrome,火狐支持,Safari,IE不支持-->
            <input type="submit">
        </form>

2、

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!