요소의 다운로드 속성은 사용자가 하이퍼링크를 클릭할 때 다운로드할 파일의 이름을 설정하는 데 사용됩니다.
다음은 구문입니다 -
<area download="file">
파일은 다운로드할 파일 세트의 이름입니다.
이제 요소 −
의 다운로드 속성을 구현하는 예를 살펴보겠습니다.예시
<!DOCTYPE html> <html> <body> <h2>Learning</h2> <p>Learn these technologies with ease....</p> <img src = /images/usemap.gif alt = "usemap" border = "0" usemap = "#tutorials"/> <map name = "tutorials"> <area shape = "poly" coords = "74,0,113,29,98,72,52,72,38,27" href = "/perl/index.htm" alt = "Perl Tutorial" download="perl" /> <area shape = "rect" coords = "22,83,126,125" alt = "HTML Tutorial" href = "/html/index.htm" target = "_blank" download="html" /> <area shape = "circle" coords = "73,168,32" alt = "PHP Tutorial" href = "/php/index.htm" target = "_blank" download="php" /> </map> </body> </html>
출력
이제 "PERL"을 클릭하면 아래와 같이 파일이 다운로드됩니다. -
위에서 −
의 다운로드 속성을 사용하여 다운로드 옵션을 활성화했습니다.<area shape = "poly" coords = "74,0,113,29,98,72,52,72,38,27" href = "/perl/index.htm" alt = "Perl Tutorial" download="perl" />
다운로드 속성은 "perl"이라는 이름으로 설정됩니다. 이것은 파일의 이름이기도 합니다 -
download="perl"