This page was translated from English by the community.Learn more and join the MDN Web Docs community.
<object>
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015년 7월.
HTML<object> 요소는 이미지나, 중첩된 브라우저 컨텍스트, 플러그인에 의해 다뤄질수 있는 리소스와 같은 외부 리소스를 나타냅니다.
In this article
시도해 보기
<object type="video/mp4" data="/shared-assets/videos/flower.mp4" width="250" height="200"></object>[컨텐츠 범주](/ko/docs/HTML/Content_categories)플로우 컨텐츠;구문 컨텐츠;포함된 컨텐츠, palpable 컨텐츠; 만약 요소가 **usemap ** 속성을 가지고 있다면,대화형 컨텐츠;listed,submittableform-associated element.허용된 컨텐츠0개 이상의<param>elements, thenTransparent content.태그 생략불가능, 시작과 끝에 태그를 추가하는 것은 필수입니다.허용된 부모 요소포함된 컨텐츠를 허용하는 모든 요소DOM 인터페이스HTMLObjectElement
속성
이 속성은전역 속성을 포함합니다.
archive지원이 중단되었습니다A space-separated list of URIs for archives of resources for the object.
border지원이 중단되었습니다The width of a border around the control, in pixels.
classid지원이 중단되었습니다The URI of the object's implementation. It can be used together with, or in place of, thedata attribute.
codebase지원이 중단되었습니다The base path used to resolve relative URIs specified byclassid,data, orarchive. If not specified, the default is the base URI of the current document.
codetype지원이 중단되었습니다The content type of the data specified byclassid.
data리소스의 URL. 최소 하나의data와type가 정의되어야 합니다.
declare지원이 중단되었습니다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.formobject 요소와 관련된 form 요소. 이 속성의 값은 같은 문서의
<form>요소의 ID 속성의 값이여야 합니다.height표시될 리소스의 높이를 CSS 픽셀 단위로 지정합니다.
name유효한 브라우징 컨텍스트의 이름(HTML5) 또는, 컨트롤의 이름(HTML 4)
standby지원이 중단되었습니다A message that the browser can show while loading the object's implementation and data.
tabindex지원이 중단되었습니다The position of the element in the tabbing navigation order for the current document.
typedata에 의해 지정된 리소스의컨텐츠 타입. 최소 한 개의data와type가 정의되어야 합니다.
typemustmatchtype와 리소스의 실제컨텐츠 타입이 일치해야되는지를 나타내는 불리언 속성
usemapwidth표시될 리소스의 가로 길이를 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>명세
| Specification |
|---|
| HTML> # the-object-element> |