苹果手机去掉 alert弹框上面的网址

浏览:1781 发布日期:2017/11/11 分类:功能实现 关键字: 苹果手机 alert 弹框 网址
苹果手机去掉 alert弹框上面的网址
//苹果去掉alert 网址
                    window.alert = function(name){
                        var iframe = document.createElement("IFRAME");
                        iframe.style.display="none";
                        iframe.setAttribute("src", 'data:text/plain,');
                        document.documentElement.appendChild(iframe);
                        window.frames[0].window.alert(name);
                        iframe.parentNode.removeChild(iframe);
                    }
评论( 相关
后面还有条评论,点击查看>>