我想根据用户要求下载多个文件。如果用户想要下载三个文件,那么我将重复 for 循环并打开窗口并下载文件。但是第一个文件保存在主窗口中,之后文件正在新打开的窗口中下载。
代码:
for(var i=0;i<data.length;i++)
{
// this is the url where i am downloading the image
var win = window.open("/Profiles/GetImage");
window.close();
}
如何在第一个窗口下载所有文件