博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS移动端(H5)弹出框(alert/confirm)提示信息去除网址(URL)
阅读量:5307 次
发布时间:2019-06-14

本文共 422 字,大约阅读时间需要 1 分钟。

alert:

<script type="text/javascript">

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

      };

 </script>

confirm:

 

 

转载于:https://www.cnblogs.com/Hibiscus-MoMo/p/6856005.html

你可能感兴趣的文章
$(document).height 与$(window).height的区别
查看>>
Android WebView默认GONE出现的问题记录
查看>>
关于敏捷开发的一些想法
查看>>
php处理脚本执行超时
查看>>
UVALive 5888 Stack Machine Executor (栈+模拟)
查看>>
[C语言]结构体初始化的不同方法
查看>>
大数据作业
查看>>
CSS 固定布局
查看>>
Altera 与 Xilinx开发环境对比
查看>>
(28000): Access denied for user 'root'@'127.0.0.1' (using password: YES)
查看>>
【AngularJS】—— 13 服务Service
查看>>
类的XML序列化(XML Serialization)
查看>>
Angular2 - 事件和属性 - 01
查看>>
[POI2011]MET-Meteors(整体二分+树状数组)
查看>>
关于2013,致2014
查看>>
像雾像雨又像风
查看>>
JSON和JS对象之间的互转
查看>>
软件开发模型
查看>>
oracle中的闪回
查看>>
mybatis 报错Result Maps collection does not contain value for java.lang.Integer
查看>>