HTML <オブジェクト>データ属性

❮HTML<object>タグ

<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<object>タグ