javascript – 如何在IE中一次下载多个文件

前端之家收集整理的这篇文章主要介绍了javascript – 如何在IE中一次下载多个文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想点击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,它从路径下载文件并在浏览器上发送.
问题是它正在运行safari,firefox但不在IE中.
我们无法用IE下载多个文件

解决方法

按照设计,在IE中阻止非用户启动的文件下载.这固有意味着单个用户点击后不可能下载多个文件.
原文链接:https://www.f2er.com/js/240770.html

猜你在找的JavaScript相关文章