최신 웹 개발 튜토리얼
 

HTML <img> longdesc Attribute

<HTML <img> 태그

사용하는 방법의 몇 가지 예 longdesc 특성 :

<!-- The description is on the same page as the image -->
<img src="w3html.gif" alt="w3ii.com" width="100" height="132" longdesc="#w3htmlExplained">

<!-- The description is in an external page -->
<img src="w3html.gif" alt="w3ii.com" width="100" height="132" longdesc="w3html.txt">

<!-- The description is one of several within an external page -->
<img src="w3html.gif" alt="w3ii.com" width="100" height="132" longdesc="http://example.com/desc#item3">

<!-- The description is included in a data:URI -->
<img src="w3html.gif" alt="w3ii.com" width="100" height="132" longdesc="data:text/html;charset=utf-8;,%3C!DOCTYPE%20html%3E%3Chtml%3E%3Chead%3E%3Ctitle%3EDescription%20of%20the%20Logo%3C/title%3E%3C/head%3E%3Cbody%3E%3Cp%3ESome%20description%20goes%20here%3C/body%3E%3C/html%3E">
»그것을 자신을 시도

정의 및 사용

longdesc 속성은 이미지의 상세한 설명에 대한 하이퍼 링크를 지정한다.


브라우저 지원

속성
longdesc 지원되지 않음 지원되지 않음 지원되지 않음 지원되지 않음 지원되지 않음

통사론

<img longdesc="string">

속성 값

기술
string

화상의 상세한 설명에 대한 하이퍼 링크.

가능한 값 :

  • 다른 요소에 ID
  • 절대 URL - 다른 웹 사이트에 점 (같은 longdesc="http://www.example.com/description.txt" )
  • 상대 URL - 포인트 파일에 대한 웹 사이트 내 (같은 longdesc="description.txt" )

<HTML <img> 태그