Chrom browser update to the latest version failed to download pictures, can only browse

  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?

Feb.26,2021

if you want to download, you have to add the img tag to the a tag and put the image address in the src!
clipboard.png


google
clipboard.png

clipboard.png

Menu