js针对禁用ie浏览器(包括ie11)在内打开网页弹窗提示更好的体验解决方案

js:弹窗选择layer

function isIE() { //ie?
        if (!!window.ActiveXObject || "ActiveXObject" in window) {
            //layer.alert("请选择使用Microsoft Edge浏览器或者Chrome浏览器更好的体验。");
            layer.open({
                title: "浏览器兼容提示",
                content: "请选择使用Microsoft Edge浏览器或者Chrome浏览器更好的体验",
                yes:function(index,layero){
                    layer.close(index);
                    window.close(index);
                },
                cancel: function (index) {
                    layer.close(index);
                    window.close(index);
                }
            });
        }
    }

调用:

$(document).ready(function() {
        isIE();
})

猜你喜欢

转载自blog.csdn.net/SmartJunTao/article/details/107490700