侧边栏壁纸
  • 累计撰写 100 篇文章
  • 累计创建 55 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

原生confirm去除链接

Malson
2022-06-25 / 0 评论 / 0 点赞 / 67 阅读 / 45 字
window.confirm = function(text){
    var iframe = document.createElement("IFRAME");
    iframe.style.display="none";
    iframe.setAttribute("src", 'data:text/plain,');
    document.documentElement.appendChild(iframe);
    var result = window.frames[0].window.confirm(text);
    iframe.parentNode.removeChild(iframe);
    return result;
};
0
博主关闭了所有页面的评论