只要在页面<head></head>标签里加一句<meta http-equiv="X-UA-Compatible" content="IE=10" />问题完美解决:
content="IE=10" 可以修改为IE其他版本号
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=10" />
</head>
</html>
本文介绍了一种通过在HTML头部加入特定<meta>标签来指定网页在Internet Explorer中渲染时使用哪个IE版本的方法。此技巧适用于需要在不同IE版本间进行兼容性调整的场景。
只要在页面<head></head>标签里加一句<meta http-equiv="X-UA-Compatible" content="IE=10" />问题完美解决:
content="IE=10" 可以修改为IE其他版本号
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=10" />
</head>
</html>
2622

被折叠的 条评论
为什么被折叠?