通过链接下载

        // window.open(url, "_blank");
        const iframe = document.createElement("iframe");
        iframe.src = url;
        iframe.style.display = "none";
        document.body.appendChild(iframe);
        setTimeout(() => {
          document.body.removeChild(iframe);
        }, 1000);

  

posted on 2023-04-25 16:51  稳住别慌  阅读(3)  评论(0编辑  收藏  举报