download 下載文件 IE兼容性處理


根據CANIUSE(http://caniuse.com/#search=download)download兼容性如下圖所示:

如上圖所示,IE瀏覽器是不支持的。

 1、測試代碼:

 1 <!doctype html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8" />
 5     <title>download 下載文件 IE兼容性處理</title>
 6 </head>
 7 <body>
 8     <a href="123.docx" download="123.docx">下載</a>
 9 </body>
10 </html>

 

2、效果:

 

 並且下載的壓縮包文件中沒有123.docx。

3、兼容性處理

將文件123.docx(其他文件一樣處理)壓縮為123.zip文件后,再進行下載。

示例代碼:

 1 <!doctype html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8" />
 5     <title>download 下載文件 IE兼容性處理</title>
 6 </head>
 7 <body>
 8     <a href="123.zip" download="123.zip">下載</a>
 9 </body>
10 </html>

 

總結:

將文件壓縮為zip、rar擴展名后再進行下載。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM