개요
HTML <data>
요소는 컨텐트를 기계판독 해석과 연결합니다. 만약 컨텐트가 시간이나 날짜와 관련되어있다면, <time>
이 사용되어야합니다.
- 컨텐트 카테고리 Flow 컨텐트, phrasing 컨텐트, palpable 컨텐트.
- 허용된 컨텐트Phrasing 컨텐트.
- 태그 생략 None, both the starting and ending tag are mandatory.
- 허용된 부모 컨텐트 phrasing 컨텐트를 허용하는 모든 요소들
- DOM 인터페이스
HTMLDataElement
속성
이 요소는 전역 속성을 포함합니다
value
- 이 속성은 요소의 컨텐트의 기계판독 번역본을 나타냅니다.
예제
밑의 예제는 상품의 이름을 표시하지만 각 이름과 관련된 UPC 코드도 표시합니다.
<p>새로운 상품들</p> <ul> <li><data value="3967381398">미니 케찹</data></li> <li><data value="3967381399">점보 케찹</data></li> <li><data value="3967381400">메가 점보 케찹</data></li> </ul>
명세
명세 | 상태 | 주석 |
---|---|---|
WHATWG HTML Living Standard The definition of '<data>' in that specification. |
Living Standard | Recommendation으로부터 변화 없음. |
HTML5 The definition of '<data>' in that specification. |
Recommendation | 초기 정의. |
브라우저 호환성
특징 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | Not supported | 22.0 (22.0) bug 839371 | Not supported | Not supported | Not supported |
특징 | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | Not supported | Not supported | Not supported | Not supported | Not supported |
참고
- HTML
<time>
요소.