ie6,7,8支持html5的方法

ie9以上的都html5标签,ie9以下的不支持。为了让ie9以下的浏览器支持html5标签。有如下两种方法

当然,这样做的前提是设置这些html5标签都为block,ection,header,article,time,nav,footer,figure,figcaption{display:block;}

然后,方法如下:

1.

<!--[if IE]>
<script>
(function(){if(!/*@cc_on!@*/0){alert("ie10");}var e = "header,footer,nav,article,section".split(','),i=e.length;while(i--){document.createElement(e[i])}})()
</script>
<![endif]-->

 

2.直接饮用google的

 

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

 

posted @ 2014-12-31 16:57  jiaojiao085  阅读(119)  评论(0编辑  收藏  举报