html 基础

1.H5新增特性
(1)语义化标签 eg: selection header footer nav video audio source progress time aside article
(2)表单 :input textarea select option
(3)表单元素新特性:placeholder min max minlength maxlength pattern(正则) ...
(4)音频 、视频
(5)canvas svg绘图
(6)本地缓存 | 服务器缓存 -- radis 分布式缓存、数据库

  localStorage:长久存在,除非用户手动关闭 4-5M
  sessionStorage:存在当前会话 4-5M
  cookie:http中自动携带,可以设置过期时间,<4k  存储用户身份、登录状态

(7)地理定位 GPS IP geolocation
(8)拖动API

你可能感兴趣的:(html 基础)