当前位置:起点学习辅导网培训频道电脑知识学习网页制作HTML与CSS教程快速修复网页在IE8 下的显示兼容问题

快速修复网页在IE8 下的显示兼容问题

08-08 00:35:12浏览次数:585栏目:HTML与CSS教程
标签:html与css教程,css教程,html网页设计教程, 快速修复网页在IE8 下的显示兼容问题,
IT产品库 http://www.qidian55.com

IE8在默认情况下是使用全新的标准模式(Standard Mode)显示引擎来显示网页。 如果网页代码还没有标准化, 在IE8下可能会显示不正常。 重写网页代码使之标准化的工作量很大,需要长时间慢慢修复。 一个简单快捷的方法就是让IE8继续IE7的显示引擎来显示你的网站,我们称这个旧的显示引擎为兼容视图(Compatibility View) 。

在网页里面加入这行代码就可以使IE8使用兼容视图:

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

代码示例:

view plaincopy to clipboardprint?
  1. <html>    
  2. <head>    
  3.   <!-- Use IE7 mode -->    
  4.   <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />    
  5.   <title>My Web Page</title>    
  6. </head>    
  7. <body>    
  8.   <p>Content goes here.</p>    
  9. </body>    
  10. </html>  

如果你用 IIS 服务器, 可以配置 Web.config 文件

<?xml version="1.0" encoding="utf-8"?>
<configuration>
   <system.webServer>
      <httpProtocol>
         <customHeaders>
            <clear />
            <add name="X-UA-Compatible" value="IE=EmulateIE7" />
         </customHeaders>
      </httpProtocol>
   </system.webServer>
</configuration>

或者通过配置工具来改:

IIS IE8 兼容

如果用的是Apache 服务器,可以配置 httpd.conf 文件:

LoadModule headers_module modules/mod_headers.so

Header set X-UA-Compatible “IE=EmulateIE7”

以上是使所有的网页都使用兼容视图。 如果只想让个别目录下的文件用兼容视图,在<location>下设置:

<Location /myfolder>
   Header set X-UA-Compatible “IE=EmulateIE7”
</Location>
 

IT产品库 http://www.qidian55.com,快速修复网页在IE8 下的显示兼容问题
《快速修复网页在IE8 下的显示兼容问题》相关文章
给资讯打分:
网友评论: