在 jquery 中下载多个带有 ahref 的 Zip 图像

Download Multiple Images with ahref as Zip in jquery

我正在使用 dcm4che 处理 dicom 图像。
我正在将 wado 请求设置为 ahref 以下载图像,但我没有得到它。

这是我的 html 代码和 wado 请求:

 <a class="myFile" href="http://xxxxx/wado?requestType=WADO&amp;studyUID=1.2.840.113704.1.111.6028.1515205296.94&amp;seriesUID=1.2.840.113704.1.111.3616.1515205367.2&amp;objectUID=1.2.840.113704.1.111.8164.1515205401.69892" download="download.jpeg"></a>
 <a class="myFile" href="http://xxxxx/wado?requestType=WADO&amp;studyUID=1.2.840.113704.1.111.6028.1515205296.94&amp;seriesUID=1.2.840.113704.1.111.3616.1515205367.2&amp;objectUID=1.2.840.113704.7.1.1.8556.1515205401.2"></a>
 <a class="myFile" href="http://xxxxx/wado?requestType=WADO&amp;studyUID=1.2.840.113704.1.111.6028.1515205296.94&amp;seriesUID=1.2.840.113704.1.111.3616.1515205367.2&amp;objectUID=1.2.840.113704.7.1.1.912.1515205428.1"></a>  

这是我的Jquery代码:

var a=document.getElementsByClassName('myFile');
a.setAttribute('download', 'download.jpeg');
a.click();

我需要下载所有 ahref link 作为 zip...

谁能解决我的问题???

试试这个:

var i;
for(i=0;i<$('.myFile').length;i++){
   var a=document.getElementByClassName('.myFile')[e];
   a.setAttribute('download','download.jpeg');
   a.click();
 }