HTML5 兼容IE瀏覽器

Java代碼 複製代碼 收藏代碼javascript

  1. <!doctype html>  css

  2. <html>  html

  3. <head>  java

  4. <meta charset="utf-8">  web

  5. <title></title>  canvas

  6. <!--[if IE]>  ide

  7. <script type="text/javascript">  網站

  8. (function(){if(!/*@cc_on!@*/0)return;var e ="abbr,article,aside,audio,canvas,datalist,details,dialog,eventsource,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video".split(','),i=e.length;while(i--){document.createElement(e[i])}})();  spa

  9. </script>  code

  10. <![endif]-->  

  11. </head>  

  12. <style type="text/css">  

  13. header,nav,aside,article,footer{ display:block;}  

  14. </style>  

  15. <body>  

  16. <header>  

  17.     <p class="f_r"><a>手機訪問</a>|<a>網站地圖</a>|<a>來院路線</a>|<a>收藏本站</a></p>  

  18. </header>  

  19. <nav>  

  20.     <ul>  

  21.         <li>導航一</li>  

  22.         <li>導航二</li>  

  23.         <li>導航三</li>  

  24.     </ul>  

  25. </nav>  

  26. <article>內容</article>  

  27. <aside>  

  28.     柵欄  

  29. </aside>  

  30. <footer>  

  31.     <p>備案信息</p>  

  32. </footer>  

  33. </body>  

  34. </html>  

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<!--[if IE]>
<script type="text/javascript">
(function(){if(!/*@cc_on!@*/0)return;var e ="abbr,article,aside,audio,canvas,datalist,details,dialog,eventsource,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video".split(','),i=e.length;while(i--){document.createElement(e[i])}})();
</script>
<![endif]-->
</head>
<style type="text/css">
header,nav,aside,article,footer{ display:block;}
</style>
<body>
<header>
	<p class="f_r"><a>手機訪問</a>|<a>網站地圖</a>|<a>來院路線</a>|<a>收藏本站</a></p>
</header>
<nav>
	<ul>
    	<li>導航一</li>
        <li>導航二</li>
        <li>導航三</li>
    </ul>
</nav>
<article>內容</article>
<aside>
	柵欄
</aside>
<footer>
	<p>備案信息</p>
</footer>
</body>
</html>

 

其中的代碼以下,經過JS建立HTML5標籤下載地址 

Java代碼 複製代碼 收藏代碼

  1. <!--[if IE]>  

  2. <script type="text/javascript">  

  3. (function(){if(!/*@cc_on!@*/0)return;var e ="abbr,article,aside,audio,canvas,datalist,details,dialog,eventsource,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video".split(','),i=e.length;while(i--){document.createElement(e[i])}})();  

  4. </script>  

  5. <![endif]-->  

<!--[if IE]>
<script type="text/javascript">
(function(){if(!/*@cc_on!@*/0)return;var e ="abbr,article,aside,audio,canvas,datalist,details,dialog,eventsource,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video".split(','),i=e.length;while(i--){document.createElement(e[i])}})();
</script>
<![endif]-->

 

其中的代碼以下,這些標籤自己就是塊級標籤,因此把這些標籤轉成塊級標籤

Java代碼 複製代碼 收藏代碼

  1. header,nav,aside,article,footer{ display:block;}  

header,nav,aside,article,footer{ display:block;}

 

效果圖:
 

相關文章
相關標籤/搜索