Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

사용자가 HTML의 하이퍼링크를 클릭할 때 대상이 다운로드되도록 지정하는 방법은 무엇입니까?


다운로드 사용 하이퍼링크 클릭 시 다운로드할 파일을 설정하는 속성입니다. 속성 값을 다운로드한 파일의 이름(예:이미지)으로 설정합니다.

예시

<!DOCTYPE html>
<html>
   <body>
      <h3>if statement in Java</h3>
      <p>The following is an image explaining the concept if <b>if-statmement in Java</b> (Click to download):<p>
     
      <a href = "https://www.tutorialspoint.com/java/images/if_statement.jpg" download>
         <img border = "0" src = "https://www.tutorialspoint.com/java/images/if_statement.jpg" alt="Java" width="400" height="450">
      </a>
   </body>
</html>