我有 .NET Framework 2.0 项目和 AxWebBrowser 控件在 Windows 7 上使用 IE9 Web 浏览器运行。
当我将此代码放入我的 IE9 网络浏览器时:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=9">
</head>
<body>
<script>alert(document.documentMode);</script>
</body>
</html>
我得到值 9 - 所以它是正确的。但是,当在我的项目中将相同的代码放入 AxWebBrowser 时,我总是得到值 8 并且我的 HTML5 代码无法正常工作。
哪里有问题?