function downloadFile(url
){
const iframe
= document
.createElement("iframe");
iframe
.style
.display
= "none";
iframe
.style
.height
= 0;
iframe
.src
= url
;
document
.body
.appendChild(iframe
);
setTimeout(()=>{
iframe
.remove();
}, 5 * 60 * 1000);
}
var data
=[url
,url
]
data
.forEach(element
=> {
downloadFile(element
);
});
日常分享…
转载请注明原文地址: https://lol.8miu.com/read-34367.html