我这个博客很早以前也做过,不支持IE8以下访问,之前覆盖几次主题给忘记了。
今天某网站集体采用了webp图片格式,才想起低版本的ie浏览器并不支持webp图片预览。
所以在网站要做个针对ie浏览器的判断提醒。
1:跳转到全新的提示网页:
<script type="text/javascript">
(function () {
var isIE = /MSIE/.test(navigator.userAgent);
if (isIE) {
var script = document.createElement('script');
var headEl = document.getElementsByTagName('html')[0];
window.location = 'https://www.jingxialai.com/llq';
headEl.appendChild(script);
}
})();
</script>
window.location里面的网址自己改下就行,可以去打开预览看下,里面代码图片,自己右键扒。
如果只针对低版本,也就行IE8以下只需:
<!--[if lt IE 8]> <script>window.location = 'https://www.jingxialai.com/llq';</script> <![endif]-->
