美文网首页
HTML5新增

HTML5新增

作者: Pretty_Boy | 来源:发表于2017-08-04 10:58 被阅读12次
    • 用于绘画的 canvas,SVG 元素
    • 用于媒介回放的 video 和 audio 元素
    • 拖放Drag和drop
    • Geolocation(地理定位)
    • 对本地离线存储的更好的支持,localStorage,sessionStorage(大量数据cun)
    • 应用程序缓存(1.离线浏览 2.以缓存的资源加载更快 3.减少服务器负载)
    • WebWorkers(独立于其他脚本,不影响页面性能)
    • 服务器发送事件(server-sent event)允许网页获得来自服务器等更新
    • 新的特殊内容元素,属性,事件,比如 article、footer、header、nav、section、time等多个标签

    http://www.w3school.com.cn/tags/index.asp 标签
    http://www.w3school.com.cn/tags/html_ref_standardattributes.asp 属性
    http://www.w3school.com.cn/tags/html_ref_eventattributes.asp 事件

    • 新的表单输入类型

    email
    url
    number
    range
    Date pickers (date, month, week, time, datetime, datetime-local) 时间选择器
    search
    color

    • 新的表单元素

    datalist input中添加选项列表
    keygen key-pair generator密钥对生成器
    output 用于不同类型的输出,比如计算或脚本输出

    • 新的 form 属性:

    autocomplete
    novalidate

    • 新的 input 属性:

    autocomplete
    autofocus
    form
    form overrides (formaction, formenctype, formmethod, formnovalidate, formtarget)
    height 和 width
    list 与datalist标签使用
    min, max 和 step
    multiple
    pattern (regexp)
    placeholder
    required

    相关文章

      网友评论

          本文标题:HTML5新增

          本文链接:https://www.haomeiwen.com/subject/rrcvlxtx.html