Compatibity Mode for IE 10 using meta tag

半腔热情 提交于 2019-12-19 11:47:48

问题


Basically I have this website that has been working very well in compatible mode IE7 for all versions of IE(I have used meta tag in IIS for this).

Now issue is with IE10 where document mode is changing to IE Standards but Browser mode is not changing to be compatible.

Can you please guide me to a solution for this.


回答1:


Meta tag would change document mode for you whereas you still need to have fixed your application or server, this is a known issue.

This would fix browser mode and combining it with meta tag below would do the job for you.

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" >


来源:https://stackoverflow.com/questions/19076013/compatibity-mode-for-ie-10-using-meta-tag

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!