发布时间:2018-11-07编辑:佚名阅读(5730)
手动切换到极速模式内核,开关就在网址输入框后面的一个闪电或者IE图标里。如下所示,点击并选择即可。(各大浏览器文字提示略有不同,不过开关位置是一致的)
默认使用极速模式访问网站,作用于360浏览器、QQ浏览器等国产双核浏览器:
<meta name="renderer" content="webkit"/>
默认使用极速模式,作用于其他双核浏览器:
<meta name="force-rendering" content="webkit"/>
如果有安装 Google Chrome Frame 插件则默认使用Chromium内核(也就是极速模式内核),否则强制本机支持的最高版本IE内核,作用于IE浏览器:
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"/>
以下代码将IE10及以下版本的用户跳转到IE浏览器升级页:
<script>/*@cc_on window.location.href="http://support.dmeng.net/upgrade-your-browser.html?referrer="+encodeURIComponent(window.location.href); @*/</script>
@cc_on 是 IE10 及更旧版IE特有的条件编译语句,因此可以用来判断是否除 IE11 的其他IE版本。
完整案例
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"/> <meta name="renderer" content="webkit"/> <meta name="force-rendering" content="webkit"/> <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"/> <script>/*@cc_on window.location.href="http://support.dmeng.net/upgrade-your-browser.html?referrer="+encodeURIComponent(window.location.href); @*/</script> <!-- 为了获得更好的解析效果,请把规定内核的meta标签放在其他meta标签前面。这里放其他meta标签。--> <title>网页标题</title> </head> <body> 网页内容 </body> </html>
1人
0人
1人
0人