HTML <객체> 데이터 속성

❮ HTML <객체> 태그

예시

<object> 요소를 사용하여 이미지를 삽입하는 방법:

<object data="pic_trulli.jpg" width="300" height="200"</object>

정의 및 사용

data속성은 개체에서 사용할 리소스의 URL을 지정합니다 .


브라우저 지원

Attribute
data Yes Yes Yes Yes Yes

통사론

<object data="URL">

속성 값

Value Description
URL Specifies the URL of the resource to be used by the object.

Possible values:

  • An absolute URL - points to data on another web site (like href="http://www.example.com/images/pic_trulli.jpg")
  • A relative URL - points to data within a web site (like href="pic_trulli.jpg")

❮ HTML <객체> 태그