美文网首页
H5弹框去掉URL

H5弹框去掉URL

作者: 唐岭云 | 来源:发表于2017-11-07 17:13 被阅读9次
    $(function() {
        window.alert = function(name) {
            var iframe = document.createElement("IFRAME");
            iframe.style.display = "none";
            iframe.setAttribute("src", 'data:text/plain,');
            document.documentElement.appendChild(iframe);
            console.info(window.frames[0].window);
            window.frames[0].window.alert(name);
            iframe.parentNode.removeChild(iframe);
        };
    })

相关文章

网友评论

      本文标题:H5弹框去掉URL

      本文链接:https://www.haomeiwen.com/subject/bkbjmxtx.html