html5shiv和respond.js
[ 2015/07/04, JavaScript , 2874阅, 0评 ]

html5shiv:解决ie9以下浏览器对html5新增标签的不识别,并导致CSS不起作用的问题。(html5shiv is an HTML5 JavaScript shim for IE to recognise and style the HTML5 elements)

respond.js:让不支持css3 Media Query的浏览器包括IE6-IE8等其他浏览器支持查询。(min/max-width media query polyfill)

由于IE6/IE7/IE8还有很大一部分用户,为了让网站浏览者都能正常的访问HTML5网站,故这两种方案还是需要的,

下面是两个解决方法的cdn地址写法:

<!--[if lt IE 9]>
<script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
<script src="//cdn.bootcss.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]—>

有朋自远方来...评论一下呗O(∩_∩)O