去除iOS系統中彈框顯示URL的問題

zifengshaoyu6發表於2017-03-13
    //去除ios上,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);
    }

 

相關文章