根據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擴展名后再進行下載。