Why does IE9 opens in Document Mode as IE7 standards?

前端 未结 7 1738
一向
一向 2020-12-12 14:25

When I open a webpage in IE9 with DOCTYPE as


It opens Document Mode as IE7 standards.

I need default IE9 stan

相关标签:
7条回答
  • 2020-12-12 14:41

    Try this answer: https://stackoverflow.com/a/13524518/1679310.

    Summary, give the IE browser more information in the meta tag:

    <!DOCTYPE html>
    <html>
      <head>
        <title>My Web</title>
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    

    Edit Note: As Olly Hodgson mentioned, the proper option is IE=edge, as currently stated in the above snippet. Below is the original, also working version:

       <meta http-equiv="X-UA-Compatible" content="IE=100" />
    
    0 讨论(0)
  • 2020-12-12 14:42

    The issue appears to be specific to the combination of IE9 and compatibility mode. For us, we cannot disable compatibility mode since it is a SharePoint 2013 site and IE11 must run in compatibility mode to edit pages, but IE9 was behaving as you are showing. Setting the X-UA-Compatible to "IE=edge" in a meta tag did fix our issue, although setting the value to IE=10 did not affect our behavior. We also have the same doctype.

    0 讨论(0)
  • 2020-12-12 14:46

    Just wanted to share that if your web server is Apache2 you could set the Response header like below in your VirtualHost configuration which will also resolve the issue.

    Header set X-UA-Compatible "IE=edge"
    
    0 讨论(0)
  • 2020-12-12 14:55

    Does your page contain the meta tag for forcing IE7?

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

    this will force the page to use IE7 compatibility.

    0 讨论(0)
  • 2020-12-12 14:56

    There can be multiple reasons why it could be parsing the document under IE7 standard:

    1. The server is sending a X-UA-Compatible header for IE7 in the HTTP response of the document. Check the server response headers using a tool like Fiddler.
    2. The HTML document is setting a meta tag with the X-UA-Compatible property value for IE7.
    3. The page is being detected automatically by IE for opening in "Compatibility view". Note here that by default all intranet sites are viewed in "Compatibility view" in IE. Uncheck the checkbox "Display intranet sites in Compatibility view" under Tools -> Compatibility view settings in IE. The "Display all websites in Compatibility view" should be unchecked too.
    4. You used the Developer tools and explicitly set to view the page to render in "IE7 standards" mode. Note that this will only occur on a per client basis though.

    Update 2016-01-28
    As @Gordon pointed out in the comments below, another reason can be that the network administrator has set the site for compatibility view as a Group Policy on the network.
    The only resolution in that case is to contact the network administrator to remove the site from the Group Policy. See HTML1203 here.

    0 讨论(0)
  • 2020-12-12 14:56

    If your project is ASP.NET MVC, make sure that you add the:

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

    tag into your Layout (template) page. I just spent two hours debugging and tweaking, only to realize that I had only added that meta tag into my child pages. As soon as I added it to my layout page, the browser loaded in EDGE mode perfectly.

    0 讨论(0)
提交回复
热议问题