原文链接:https://blog.youkuaiyun.com/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;
};