通过链接下载

发布时间 2023-04-25 16:56:41作者: 稳住别慌
        // 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);