美文网首页
iOS移动端(H5)alert/confirm提示信息去除网址(

iOS移动端(H5)alert/confirm提示信息去除网址(

作者: 程序员的自我修养 | 来源:发表于2020-05-29 09:03 被阅读0次

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;

};

相关文章

网友评论

      本文标题:iOS移动端(H5)alert/confirm提示信息去除网址(

      本文链接:https://www.haomeiwen.com/subject/unquohtx.html