html5如何实现兼容IE浏览器

2024年09月24日 建站教程

html5有很多好玩的标签,比如:header、footer、nav、section、article、aside等。但是有很多公司还需要兼容IE浏览器,而html5对IE浏览器不是很友好,那么如何实现完美兼容呢?下面web建站小编给大家详细介绍一下具体实现方法!

引入Google的html5shiv

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

Ps:如何ie6/7/8用户禁用脚本,需要做一个判断,代码如下:

<!--[if lte IE 8]> 
<noscript>
  <style>.html5-wrappers{display:none!important;}</style>
  <div class="ie-warning-trips">您的浏览器禁用了脚本,请<a href="">查看这里</a>来启用脚本!或者<a href="/?noscript=1">继续访问</a>.</div>
</noscript>
<![endif]-->

这样应该就可以了~

本文链接:http://so.lmcjl.com/news/13802/

展开阅读全文
相关内容