修改360浏览器极速模式
作者:
银角大王__ | 来源:发表于
2021-03-19 10:07 被阅读0次<html>
<head>
<title>360</title>
<meta name="renderer" content="webkit|ie-comp|ie-stand">
<meta charset="utf-8" />
<script>
function mode(){
if (window.navigator.userAgent.indexOf('compatible') != -1) {
alert('兼容模式');
}else if(window.navigator.userAgent.indexOf('AppleWebKit') != -1) {
alert('极速模式浏览');
}
}
</script>
</head>
<body onload="mode()">
<h1>360浏览器</h1>
</body>
</html>```
本文标题:修改360浏览器极速模式
本文链接:https://www.haomeiwen.com/subject/aycvcltx.html
网友评论