① IE8/IE7/IE6支持通过document.createElement方法产生的标签,可以利用这一特性让这些浏览器支持HTML5新标签
② 也可以使用成熟的框架 ex:html5shim
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
本文介绍如何使HTML5新标签在IE8/IE7/IE6等旧版浏览器中正常显示的方法,包括使用document.createElement创建标签及引入html5shim框架的实现细节。
① IE8/IE7/IE6支持通过document.createElement方法产生的标签,可以利用这一特性让这些浏览器支持HTML5新标签
② 也可以使用成熟的框架 ex:html5shim
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
转载于:https://www.cnblogs.com/lyt598/p/10510806.html

被折叠的 条评论
为什么被折叠?