前端学习指南饥人谷技术博客JavaScript 进阶营

HTML5表单元素的新增属性

2017-05-14  本文已影响243人  大春春

Input标签(类型属性)

email/url/range/number/search/color/tel/时间选择/针对PC端的其它类型(除了number和时间选择外,其它的类型都只有在手机端的输入板有效果)

    <input type="date">             :年月日
    <input type="month">          :年月
    <input type="week">           :年月星期
    <input type="time">             :时分秒
    <input type="datetime">      :年月日时分秒(UTC时间)
    <input type="datetime-local">:年月日时分秒(本地时间)
PS:以上的input类型基本只有谷歌和Opera浏览器是完全支持的,datetime类型谷歌浏览器不兼容

效果图:



此外还有选项框等:



手机端效果都是以滚轮的形式呈现的:
例如datetime-local类型

表单属性

autocomplete/autofocus/multiple/required

链接属性

link的sizes属性/base对的target属性

 <head>
    <base href='https://www.baidu.com/' target='_blank'>
</head>
<body>
    <a href>aaa</a>
</body>

其他属性

script/ol

上一篇下一篇

猜你喜欢

热点阅读