HTML5 html5shiv和IE7

时间:2012-07-22 16:15:16

标签: html html5 internet-explorer html5shiv

我正在尝试使用html5shiv使IE7渲染HTML5;我认为html5shiv会解决这些问题。但是,Internet Explorer的调试栏仍然关注HTML5标签。

debugbar_output

如何使用html5shiv解决这个问题,以便在调试栏中使用相同的HTML5内容而不出错?

<!DOCTYPE html>
<!--
   See this page for language codes:
   http://tlt.its.psu.edu/suggestions/international/web/tips/langtagscript.html
-->
<html class="no-js" lang="en-US">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>HTML5 Page Template</title>
    <!--
         html5shiv via CDN
         Provides HTML5 support in hateful IE versions
         CDN: http://cdnjs.com/
    -->
    <!--[if lt IE 9]>
        <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6/html5shiv.min.js"></script>
    <![endif]-->
  </head>
  <body>
    <div id="page">
    <header>
      <h1><a href="#">Standard HTML5 Page</a></h1>
    </header>
    <nav>
      <ul>
        <li><a href="#">Home</a></li>
        <li><a href="#">Archives</a></li>
        <li><a href="#">About</a></li>
      </ul>
    </nav>
    <section id="featured">
      <article>
        <header>
          <h1><a href="#">Title Foo1</a></h1>
        </header>
        <section>
          <p>Lorem ipsum...</p>
        </section>
      </article>
      <article>
        <header>
          <h1><a href="#">Title Foo2</a></h1>
        </header>
        <section>
          <p>Lorem ipsum...</p>
        </section>
      </article>
    </section>
    <section id="ads">
      <a href="http://careers.stackoverflow.com/">Get a better job!</a>
    </section>
    <footer>
      <p>Insert footer info here</p>
    </footer>
    </div>
  </body>
</html>

2 个答案:

答案 0 :(得分:9)

你没有。 html5shiv只能设置这些元素的样式。 IE7仍然不会了解它们。

答案 1 :(得分:0)

我也有问题让html5shiv在IE Tester中工作(假设你正在使用IE Tester),我发现当我强迫IE8使用标签模拟IE7时不会发生这样的事情,如下所示:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7;">

(参见我对类似问题的回答here)。基于这种经验,我怀疑IE Tester可能有html5shiv的问题:在实际的IE7中测试你的页面可能值得确保这里确实存在问题。