我想点击jsp中的按钮下载多个文件.
我在js中使用以下代码来调用一个servlet两次.
我在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,它从路径下载文件并在浏览器上发送.
问题是它正在运行safari,firefox但不在IE中.
我们无法用IE下载多个文件?