是否可以强制 IE 使用 IE5 怪癖模式?
Is it possible to force IE to use IE5 quirks mode?
我有this question and this one and also this one。不幸的是,它们似乎对我不起作用。
我也看了Microsoft docs,没用。
我已经尝试了一些东西。
我在脑袋里加了<meta http-equiv="X-UA-Compatible" content="IE=5">
。我在文档的开头添加了 <!DOCTYPE html>
和元标记。仍然没有骰子。唯一发生的事情是它进入 Document Mode: Quirks
:
但是,这不起作用。我的页面坏了。但是当我 select IE5 怪癖时:
一切正常。对于实际呈现页面的作品的任何价值。
不过,事情 有点奇怪,因为页面在 Chrome 和 Firefox 中工作得很好。
哦,哇哦。显然它 也 与
一起工作
IE8 标准。
将其更改为 content="IE=8"
或 content="IE=EmulateIE8"
似乎也不起作用。
我做错了什么??
关闭 DTD 并在 <head>
中添加以下内容:
<meta http-equiv="X-UA-Compatible" content="IE=5">
来自http://www.nczonline.net/blog/2010/01/19/internet-explorer-8-document-and-browser-modes/
经测试可在 Win 8.1 的 IE11 和 Win 7 的 IE10 中运行。
我有this question and this one and also this one。不幸的是,它们似乎对我不起作用。
我也看了Microsoft docs,没用。
我已经尝试了一些东西。
我在脑袋里加了<meta http-equiv="X-UA-Compatible" content="IE=5">
。我在文档的开头添加了 <!DOCTYPE html>
和元标记。仍然没有骰子。唯一发生的事情是它进入 Document Mode: Quirks
:
但是,这不起作用。我的页面坏了。但是当我 select IE5 怪癖时:
一切正常。对于实际呈现页面的作品的任何价值。
不过,事情 有点奇怪,因为页面在 Chrome 和 Firefox 中工作得很好。
哦,哇哦。显然它 也 与
一起工作IE8 标准。
将其更改为 content="IE=8"
或 content="IE=EmulateIE8"
似乎也不起作用。
我做错了什么??
关闭 DTD 并在 <head>
中添加以下内容:
<meta http-equiv="X-UA-Compatible" content="IE=5">
来自http://www.nczonline.net/blog/2010/01/19/internet-explorer-8-document-and-browser-modes/
经测试可在 Win 8.1 的 IE11 和 Win 7 的 IE10 中运行。