我目前正在edgemode中运行ie,但仅当我使用devtools(f12)时。当我关闭devtools时,它似乎在ie 7模式下运行。如何在不调整注册表的情况下更改此项?我不是这台机器的管理员。

最佳答案

您可以使用Meta标记:

<html>
    <head>
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <title>My Web Page</title>
    </head>
    <body>
        <p>Content goes here.</p>
    </body>
</html>

您也可以使用Enterprise Mode Site List Manager
2.1Use Enterprise Mode to improve compatibility
2.2Fix web compatibility issues using document modes and the Enterprise Mode site list
谢谢:-)

关于windows - 没有devtools的情况下如何在边缘模式下运行IE?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43795257/

10-13 07:49