新版本的360有2种模式,基于Webkit内核的极速模式,和IE内核的兼容模式。
如果要强制360以极速模式浏览网页,可以给此网页增加meta,强制360浏览器以极速模式解析此网页,而非IE兼容模式。
代码示例,在head标签中添加一行代码:
<html>
<head>
<meta name="renderer" content="webkit">
</head>
<body>
</body>
</html>
<head>
<meta name="renderer" content="webkit">
</head>
<body>
</body>
</html>
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">