我想通过单击jsp中的一个按钮来下载多个文件。
我在js中使用以下代码两次调用一个servlet。
var iframe = document.createElement("iframe");
iframe.width = iframe.height = iframe.frameBorder = 0;
iframe.scrolling = "no";
iframe.src = "/xyz.jsp?prodId=p10245";
document.getElementById("iframe_holder").appendChild(iframe);
var iframe2 = document.createElement("iframe");
iframe2.width = iframe2.height = iframe2.frameBorder = 0;
iframe2.scrolling = "no";
iframe2.src = "/xyz.jsp?prodId=p10243";
document.getElementById("iframe_holder").appendChild(iframe2);
在xyz.jsp中,我正在调用servlet,该servlet从路径下载文件并在浏览器中发送它。
问题是它正在使用safari,firefox,但在IE中不起作用。
我们不能使用IE下载多个文件吗?
最佳答案
通过设计,非用户启动的文件下载在IE中被阻止。本质上,这意味着单击一次用户就不能下载多个文件。