设置网页默认为360浏览器极速模式打开

设置网页默认为360浏览器极速模式打开

在head标签中添加一行代码:

<html>
<head>
<meta name="renderer" content="webkit|ie-comp|ie-stand">
</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">


本文来自 斷了De弦 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/w3624270/article/details/78139359?utm_source=copy

猜你喜欢

转载自blog.csdn.net/Qian_mos/article/details/82915765