zoukankan      html  css  js  c++  java
  • 设置IE兼容模式的几种方法

    一.指定文件兼容性模式
    要为你的网页指定文件模式,需要在你的网页中使用meta元素放入x-ua-compatible http-equiv 标头。
    1. 强制ie8使用ie8模式来解析,而且那个兼容性视图按钮也被去掉了

    <meta http-equiv="x-ua-compatible" content="ie=8"/>

    2. google chrome frame也可以让ie用上chrome的引擎:

    <meta http-equiv="x-ua-compatible" content="chrome=1" />

    3.强制ie8使用ie7模式来解析

    <meta http-equiv="x-ua-compatible" content="ie=emulateie7"><!-- ie7 mode --> 
    或者
    <meta http-equiv="x-ua-compatible" content="ie=7"><!-- ie7 mode -->

    4.强制ie8使用ie6或ie5模式来解析

    <meta http-equiv="x-ua-compatible" content="ie=6"><!-- ie6 mode -->   
    <meta http-equiv="x-ua-compatible" content="ie=5"><!-- ie5 mode --> 

    5.如果一个特定版本的ie支持所要求的兼容性模式多于一种,如:

    <meta http-equiv="x-ua-compatible" content="ie=5; ie=8" />

    二.设定网站服务器以指定预设兼容性模式
    网站管理员可籍着为网站定义一个自订标头来为他们的网站预设一个特定的文件兼容性模式。这个特定的方法取决于你的网站服务器。举例来说,下列的 web.config文件使microsoft internet information services (iis)能定义一个自订标头以自动使用ie7 mode来编译所有网页。

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
    <system.webServer>
      <modules runAllManagedModulesForAllRequests="true"/>
      <httpProtocol>
       <customHeaders>
        <clear/>
        <add name="x-ua-compatible" value="ie=emulateie7" />
       </customHeaders>
      </httpProtocol>
     </system.webServer></configuration> 

    若你已于网站服务器指定了一个预设的文件兼容性模式,你可以在个别页面上指定不同的文件兼容性模式来盖过它。在网页中指定的模式优先权高于服务器中所指定的模式。

    原文:http://blog.csdn.net/gaozhigang/article/details/7804566

  • 相关阅读:
    C# .Net基础知识点解答
    依赖注入框架Autofac的简单使用
    Linq表达式、Lambda表达式你更喜欢哪个?
    C#抽象类、接口、虚函数和抽象函数
    MVC面试问题与答案
    并发 并行 同步 异步 多线程的区别
    .Net中的控制翻转和依赖注入
    解析ASP.NET WebForm和Mvc开发的区别
    测试与代码质量
    netty 同步调用
  • 原文地址:https://www.cnblogs.com/TiestoRay/p/3456980.html
Copyright © 2011-2022 走看看