HTML5 瀏覽器支援LOGIN

HTML5 瀏覽器支援

HTML5 瀏覽器支援情況

PC端

#1) 其中支援最完善是chrome系列

2) opera改為chromium內核了..所以分數基本上一致

3) 出乎意料的是Firefox,W3C標準一直都在最前沿的,對H5的支持竟然不是最高的!!!

4) IE10以下,H5的體驗就差強人意了…只能支援一部分

5) Safari的老版本比IE老版系列好太多….

#平板電腦端

chrome穩居第一

android, firefox, ios, opera大同小異(IE除外)

行動端的相容性比PC端好很多

#手機端

手機端的各大系列瀏覽器支援都很不錯…除了個別很老的系列…


幾個解決IE瀏覽器不支援html5標籤的幾個方法:

1.javascript: document.createElenment("......")

function(){       

##               var element=['header','footer','article', 'aside','section','nav','menu','hgroup','details','dialog','figure','figcaption'],               len=element.length; #   

##           while(len--){

               .


#2
.有人已經寫了一個完整的js文件,你只需要引入既可,像這樣:

<!--[if lt IE 9]>  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"> ;</script><![endif]-->#

或:

<!--[if lte IE 9]>
   <script src="http://html5shiv.googlecode. com/svn/trunk/html5.js"></script>
< ![endif]-->


這裡要做一個特別的說明:就是IE特有的註解判斷:

lte:就是Less than or equal to的簡寫,也就是小於或等於的意思。

###lt :就是Less than的簡寫,也就是小於的意思。 ######gte:就是Greater than or equal to的簡寫,也就是大於等於的意思。 ######gt :就是Greater than的簡寫,也就是大於的意思。 ######! : 就是不等於的意思,跟javascript裡的不等於判斷符相同#######因為IE9雖然支援html5標籤,但支援的不是很完整,所以,也可以寫"lte ",這取決於你的選擇! #####################下一節
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>渲染 HTML5</title> <!--[if lt IE 9]> <script src="http://apps.bdimg.com/libs/html5shiv/3.7/html5shiv.min.js"></script> <![endif]--> <script>document.createElement("myHero")</script> <style> myHero { display: block; background-color: yellow; padding: 50px; font-size: 20px; width: 25%; } </style> </head> <body> <h3>标题</h3> <article> php中文网 </article> <br> <myHero>增加新的内容</myHero> </body> </html>
章節課件