a標籤的下載檔案
阿新 • • 發佈:2021-07-20
<!DOCTYPEhtml>
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>下載</title>
</head>
<body>
<!--超連結下載當使用超連結a標籤的時候如果遇到瀏覽器識別的資源,就會顯示內容,如果不識別
就會下載
而在a標籤裡面新增download屬性會預設下載如果設定了download屬性值,則使用設定的值為檔名
-->
<ahref="downFiles/r.txt">文字</a>
<ahref="downFiles/頭像.jpg">圖片</a>
<ahref="downFiles/b.zip">壓縮寶</a>
<hr/>
<!--其中文字和圖片可以開啟但是壓縮包會直接下載-->
<ahref="downFiles/頭像.jpg"download="圖片.jpg">圖片</a>
</body> </html>
<ahref="downFiles/頭像.jpg"download="圖片.jpg">圖片</a>
</body> </html>