我刚刚将我的网络应用程序移动到生产服务器上,我通过192.168。 。 方案访问该服务器,之后是在开发服务器上使用主机名访问。即使在this question中使用X-US-Compatible: IE=Edge
HTTP标头后,我的网页也会以不同方式呈现。
以下是开发服务器的响应标头:
Response HTTP/1.1 200 OK
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma no-cache
Content-Type text/html
Expires Thu, 19 Nov 1981 08:52:00 GMT
Server Microsoft-IIS/7.5
X-Powered-By PHP/5.4.24
X-Powered-By ASP.NET
Date Fri, 28 Aug 2015 15:04:50 GMT
Content-Length 68973
来自生产服务器的响应头:
Response HTTP/1.1 200 OK
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma no-cache
Content-Type text/html; charset=UTF-8
Expires Thu, 19 Nov 1981 08:52:00 GMT
Server Microsoft-IIS/8.5
X-Powered-By PHP/5.6.0
X-Powered-By ASP.NET
X-UA-Compatible IE=Edge
Date Fri, 28 Aug 2015 15:04:40 GMT
Content-Length 68973
页面上的字体和文本输入被渲染得更大,按钮被渲染得更小。开发人员控制台说这两个页面都是以IE9标准模式呈现的。
非常感谢任何帮助,谢谢。