重写系统的弹框

Posted 仔仔爱学习

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了重写系统的弹框相关的知识,希望对你有一定的参考价值。

 //调用系统的弹框,不显示地址

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

以上是关于重写系统的弹框的主要内容,如果未能解决你的问题,请参考以下文章

Flutter 输入框弹框

UI自动化之特殊处理二(弹框下拉框选项文件上传)

vue实现按钮弹框弹出图片视频表格表单等

popover带箭头弹框

考拉Android统一弹框

selenium的弹框处理