这些代码适用于下载html文件,但我需要下载文件夹请帮助解决此问题。
var downloadurl = path+'?_=1&forceDownload=true'
var hiddenIFrameID = 'hiddenDownloader',
iframe = document.getElementById(hiddenIFrameID);
if (iframe === null) {
iframe = document.createElement('iframe');
iframe.id = hiddenIFrameID;
iframe.style.display = 'none';
document.body.appendChild(iframe);
}
iframe.src = downloadurl;