列出所有 IE 浏览器模式和 select 一个
List all IE Browser Modes and select one
有没有办法列出浏览器将在此网页上使用的所有可能的浏览器 Modes
和 select?
我需要 js
或 angular
方式,没有 jQuery
,或者只需要 tags
在 mu head
部分中使用。
谢谢。
没有API来确定浏览器支持哪些模式。
从页面本身更改它们的唯一方法是:
- 通过指定可以根据浏览器触发 Quirks、Standards 或 Almost Standards 模式的 Doctype。
- 通过使用元标记设置
x-ua-compatible
(仅限 IE,在 IE11 中已弃用)
据我所知,您无法在页面内使用 JavaScript 更改模式。
有没有办法列出浏览器将在此网页上使用的所有可能的浏览器 Modes
和 select?
我需要 js
或 angular
方式,没有 jQuery
,或者只需要 tags
在 mu head
部分中使用。
谢谢。
没有API来确定浏览器支持哪些模式。
从页面本身更改它们的唯一方法是:
- 通过指定可以根据浏览器触发 Quirks、Standards 或 Almost Standards 模式的 Doctype。
- 通过使用元标记设置
x-ua-compatible
(仅限 IE,在 IE11 中已弃用)
据我所知,您无法在页面内使用 JavaScript 更改模式。