<!DOCTYPE html>
<html>
<body>
<h1>area download 属性</h1>
<p>单击太阳或其中一颗行星以下载其内容。</p>
<img src="planets.gif" width="145" height="126" alt="行星"usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" alt="太阳" href="information_about_the_sun.htm" download="sun">
<area shape="circle" coords="90,58,3" alt="水星" href="merglobe.gif" download="mercury">
<area shape="circle" coords="124,58,8" alt="金星" href="information_about_the_planet_venus.txt" download="venus">
</map>
<p>请注意,对于太阳区域,下载文件的文件名将保存为“sun.htm”而不是“information_about_the_sun.htm”,对于水星区域将保存为“mercury.gif”而不是“merglobe.gif”,以及“venus.txt” ” 而不是金星区域的“information_about_the_planet_venus.txt”。</p>
<p><b>注意:</b> IE、Safari 或 Opera 版本 12(及更早版本)不支持 download 属性。</p>
</body>
</html>