在页面head
加:<meta http-equiv="X-UA-Compatible" content="IE=11">
告诉浏览器最少使用IE11
的内核去解析 能解决IE7
内核下的很多问题;
在head标签中添加一行代码:
<html>
<head>
<meta name="renderer" content="ie-comp">
</head>
<body>
</body>
</html>
可使360浏览器使用兼容模式
content
的取值为webkit
,ie-comp
,ie-stand
之一,区分大小写,分别代表用webkit
内核,IE
兼容内核,IE
标准内核。
若页面需默认用极速核,增加标签:<meta name="renderer" content="webkit">
若页面需默认用ie
兼容内核,增加标签:<meta name="renderer" content="ie-comp">
若页面需默认用ie
标准内核,增加标签:<meta name="renderer" content="ie-stand">