현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
개요
HTML Embedded Object 요소 (<object>) 는 이미지나, 중첩된 브라우저 컨텍스트, 플러그인에 의해 다뤄질수 있는 리소스와 같은 외부 리소스를 나타냅니다.
- 컨텐츠 범주 플로우 컨텐츠; 구문 컨텐츠; 포함된 컨텐츠, palpable 컨텐츠; 만약 요소가 usemap 속성을 가지고 있다면, 대화형 컨텐츠; listed, submittable form-associated element.
- 허용된 컨텐츠 0개 이상의
<param>
elements, then Transparent content. - 태그 생략 None, both the starting and ending tag are mandatory.
- 허용된 부모 요소포함된 컨텐츠를 허용하는 모든 요소
- DOM 인터페이스
HTMLObjectElement
속성
이 속성은 전역 속성을 포함합니다.
archive
HTML 4 only; 안씀 HTML5- A space-separated list of URIs for archives of resources for the object.
border
Deprecated HTML4.01; 안씀 HTML5- The width of a border around the control, in pixels.
classid
HTML 4 only; 안씀 HTML5- The URI of the object's implementation. It can be used together with, or in place of, the data attribute.
codebase
HTML 4 only; 안씀 HTML5- The base path used to resolve relative URIs specified by classid, data, or archive. If not specified, the default is the base URI of the current document.
codetype
HTML 4 only; 안씀 HTML5- The content type of the data specified by classid.
data
- 리소스의 URL. 최소 하나의 data와 type가 정의되어야 합니다.
declare
HTML 4 only; 안씀 HTML5- The presence of this Boolean attribute makes this element a declaration only. The object must be instantiated by a subsequent
<object>
element. In HTML5, repeat the <object> element completely each that that the resource is reused. form
HTML5- object 요소와 관련된 form 요소. 이 속성의 값은 같은 문서의
<form>
요소의 ID 속성의 값이여야 합니다. height
- 표시될 리소스의 높이를 CSS 픽셀 단위로 지정합니다.
name
- 유효한 브라우징 컨텍스트의 이름(HTML5) 또는, 컨트롤의 이름(HTML 4)
standby
HTML 4 only; 안씀 HTML5- A message that the browser can show while loading the object's implementation and data.
tabindex
HTML 4 only; 안씀 HTML5- The position of the element in the tabbing navigation order for the current document.
type
- data에 의해 지정된 리소스의 컨텐츠 타입. 최소 한 개의 data와 type가 정의되어야 합니다.
typemustmatch
HTML5- type와 리소스의 실제 컨텐츠 타입이 일치해야되는지를 나타내는 불리언 속성
usemap
<map>
요소에 대한 해쉬-이름 참조; #와 그 뒤에 map 요소의name
값이 붙음width
- 표시될 리소스의 가로 길이를 CSS 픽셀단위로 지정합니다.
예제
포함된 플래시 무비
<!-- Embed a flash movie --> <object data="move.swf" type="application/x-shockwave-flash"></object> <!-- Embed a flash movie with parameters --> <object data="move.swf" type="application/x-shockwave-flash"> <param name="foo" value="bar"> </object>
사양
사양 | 상태 | 주석 |
---|---|---|
WHATWG HTML Living Standard The definition of '<object>' in that specification. |
Living Standard | |
HTML5 The definition of '<object>' in that specification. |
Recommendation | |
HTML 4.01 Specification The definition of '<object>' in that specification. |
Recommendation |
브라우저 호환성
기능 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | 1.0 (1.7 or earlier) | (Yes) | (Yes) | (Yes) |
typemustmatch |
? | 27 (27) | ? | ? | ? |
기능 | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
typemustmatch |
? | 27.0 (27) | ? | ? | ? |