jsは、IEブラウザー(IE11を含む)を含むWebページポップアップを開くための優れたエクスペリエンスソリューションを提供します

js:レイヤーを選択するポップアップウィンドウ

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