我的 Windows 7 机器上安装了 IE9。
- 使用这个版本的 IE,当我查看包含 jqPlot 图形的本地 HTML 页面时,一切都是响应式的(图形渲染和缩放非常快)。
- 如果我将浏览器的浏览器模式(F12 -> 浏览器模式)设置为 IE7 或 IE8,页面会变得非常无响应(预期)。
我目前正在使用 VC++ 2008 开发 MFC 应用程序。该应用程序将 IE7 定义为其最低要求平台,如下所示:
In targetver.h
...
#ifndef _WIN32_IE // Specifies that the minimum required platform is Internet Explorer 7.0.
#define _WIN32_IE 0x0700 // Change this to the appropriate value to target other versions of IE.
#endif
我想做的是改为以 IE9 为目标,因为当应用程序导航到我的本地 HTML 页面时,对页面执行的任何操作都非常慢(如上面的案例 2)。
有人知道该怎么做吗?我尝试将“_WIN32_IE”设置为“0x0900”,但这似乎没有任何区别。我需要更改任何设置吗?