• 2024-03-01window.open 循环下载多个文件会打开新页签问题解决
     批量下载文件,循环使用window.open(url)的方式会打开新页签,参考了一位大侠的文章,使用iframe可以的:https://blog.csdn.net/nanke_yh/article/details/125145717如下:fileList.forEach(file=>{//同时下载多个文件,使用iframe下载,因为window.open或者a
  • 2024-02-27阿里云chrome新页签插件-云端
    在云端,认真快乐工作https://developer.aliyun.com/topic/chrome-extension下载插件点击下载拖拽安装chrome://extensions/edge://extensions/
  • 2023-12-10231-js 动态创建a元素,点击a后,打开新页签,下载文件
    functiondownloadFile(){constlink=document.createElement('a');link.href='your_file_url';//替换为要下载的文件的URLlink.target='_blank';link.download='file_name';//替换为要保存的文件名document.body.appendChi