下面的函數(shù),在其他瀏覽器里可以下載一個(gè)txt文件,但是在ie11里跳轉(zhuǎn)到一個(gè)空白頁(yè)面。文件被url編碼后放在了地址欄。沒有觸發(fā)下載。請(qǐng)問怎么才能在ie11里也觸發(fā)下載文件?完整項(xiàng)目地址:https://github.com/wangduandu... this.downloadLog = function() { var file = "data:text/plain;charset=utf-8,"; var logFile = self.getLog(); var encoded = encodeURIComponent(logFile); file += encoded; var a = document.createElement('a'); a.href = file; a.target = '_blank'; a.download = self.formatTimestamp()+ '-' + self.logFilename; document.body.appendChild(a); a.click(); a.remove(); };
如何在ie11里使用a連接創(chuàng)建動(dòng)態(tài)下載文件流?
飲歌長(zhǎng)嘯
2018-11-15 10:14:15