例
图像映射与点击时将要下载的可点击区域:
<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>
试一试»