let arr = [
"https://storage.jtl3d.com/Data/Designs/88779581-75ed-11e7-a1bf-6c92bf28f331/_drawingcover.png",
"https://storage.jtl3d.com/Data/Designs/d2a30ba7-8aa4-406b-b505-dc3aa43ff09c/_drawingcover.png"
];
arr.forEach((ele, i) => {
let domA = $("<a>").attr("download", "").attr("href", ele + `?time=${new Date().getTime()}`).appendTo("body");
domA[0].click();
domA.remove();
})
after the browser update, the above code will automatically open a picture when it is executed. The browser has no download record and wrote the simplest code
.<a href="https://storage.jtl3d.com/Data/Designs/d2a30ba7-8aa4-406b-b505-dc3aa43ff09c/_drawingcover.png" download></a>
found that it has no effect on the picture download property, but it can be downloaded if it is really useful for the compressed package.
tried using the ifranm tag and found it didn"t work.
is there any way?