alert IOS自带域名

Posted web前端

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了alert IOS自带域名相关的知识,希望对你有一定的参考价值。

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

 

以上是关于alert IOS自带域名的主要内容,如果未能解决你的问题,请参考以下文章

iOS系统自带的 UIAlertView 自动旋转的实现

Flutter 报错 DioError [DioErrorType.DEFAULT]: Bad state: Insecure HTTP is not allowed by platform(代码片段

自定义alert弹框,title不显示域名

请问电脑PC自带IE浏览器和 苹果IPHONE或者安卓手机打开同一域名网站时,分别显示不同内容,代码如何修改,

iOS代码片段CodeSnippets

IOS开发-OC学习-常用功能代码片段整理