美文网首页
去除alert顶部标题

去除alert顶部标题

作者: 柚子硕 | 来源:发表于2020-03-04 12:20 被阅读0次

alert在移动端顶部显示域名,重写alert解决

window.alert = function (name) {
  const 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顶部标题

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