Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个网站。如果我使用 Internet Explorer 10 浏览该网站,我希望该网站以 IE10 兼容模式显示。
我怎样才能在我的 html 网站中做到这一点?
有谁能够帮我 ?
如果您希望您的页面以较旧的文档模式呈现,您可以将其添加到您的标记中,在 HEAD 标记的早期:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
但是,一般来说,您应该考虑更新您的页面以使用符合标准的标记。