例
圖像映射與點擊時將要下載的可點擊區域:
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126"
alt="Sun" href="info_about_the_sun.htm" download="sun">
<area
shape="circle" coords="90,58,3" alt="Mercury" href="merglobe.gif" download="mercury">
<area shape="circle" coords="124,58,8" alt="Venus" href="information_about_the_planet_venus.txt"
download="venus">
</map>
試一試» 更多“試一試”的例子。
定義和用法
該download屬性指定,當用戶點擊超鏈接的目標將被下載。
如果該屬性僅用於href屬性設置。
該屬性的值將是所下載的文件的名稱。 有允許的數據沒有任何限制,瀏覽器會自動檢測到正確的文件擴展名,並將其添加到該文件( .img, .pdf, .txt, .html ,等等)。
如果省略該值,則使用原始文件名。
瀏覽器支持
在表中的數字指定完全支持屬性所述第一瀏覽器的版本。
屬性 | |||||
---|---|---|---|---|---|
download | 14.0 | 不支持 | 20.0 | 不支持 | 15.0 |
HTML 4.01和HTML5之間的差異
該download屬性是新換的<area>標籤在HTML5。
句法
<area
download="filename">
屬性值
值 | 描述 |
---|---|
filename | 可選的。 指定下載文件的新文件名 |
更多示例
例
指定一個值用於download屬性,這將是所下載的文件的新文件名( sun.htm代替information_about_the_sun.htm等):
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126"
alt="Sun" href="info_about_the_sun.htm" download="sun">
<area
shape="circle" coords="90,58,3" alt="Mercury" href="merglobe.gif" download="mercury">
<area shape="circle" coords="124,58,8" alt="Venus" href="information_about_the_planet_venus.txt"
download="venus">
</map>
試一試»