1.datetime
日期和时间之间用T分隔,Z表示UTC标准时间,可使用+08:00等替代Z来表示对应的时区,pubdate属性通常代码文章的发布日期
1 | <time datetime= "2016-10-05T20:00Z" pubdate>2016年10月5日</time> |
2.由于一些浏览器尚未提供对H5新增结构元素的支持,可添加
1 2 3 4 5 | //追加block声明 article, aside, dialog, figure, footer, header, legend, nav, section, main { display:block; } |
而IE8及之前的浏览器不支持以上这种CSS的声明,需增加
1 2 3 4 5 | //在script标签中加入 document.createElement( "article" ); ... ... //控制对指定版本浏览器有效在script标签两边加上 <!--[ if lte IE 8]><![ endif ]--> |
3.表单
formaction, formmethod, formtarget来指定各表单元素对应的属性
autofocus
indeterminate: checkbox的input表单元素新增了一种indeterminate状态,要使用这一状态,需在该元素的下方写一段JS或jQuery代码来将元素的indeterminate值赋为真
1 2 | var checkbox = document.getElementById( "some-checkbox" ); checkbox.indeterminate = true; |
JS属性valueAsNumber,如document.getElementById(‘…’).valueAsNumber