微信alert去除默認的提示

原文鏈接:https://blog.csdn.net/qq_32307891/article/details/98953960

微信下alert會多顯示個標題欄,會顯示當前網址。用jQuery下的彈出框,在顯示軟鍵盤情況下點不到“確認”按鈕,應該是QQ瀏覽器的bug。原文裏這個方法親測好用,轉過來收藏備用。

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);
};

window.confirm = function(message) {
var iframe = document.createElement("IFRAME");
iframe.style.display = "none";
iframe.setAttribute("src", 'data:text/plain,');
document.documentElement.appendChild(iframe);
var alertFrame = window.frames[0];
var result = alertFrame.window.confirm(message);
iframe.parentNode.removeChild(iframe);
return result;
};


 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章