Latest web development tutorials

HTML object data attribute

HTML object tag Reference Manual HTML <object> tag

Examples

How to use the <object> element to embed Flash files:

<object width="400" height="400" data="helloworld.swf"></object>

try it"

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support data attributes.


Definition and Usage

data attribute specifies the URL object resources used.


Differences between HTML 4.01 and HTML5

no.


grammar

<object data=" URL ">

Property Value

描述
URL 规定对象所用资源的 URL。

可能的值:

  • 绝对 URL - 指向另一个网站上的数据(比如 href="http://www.example.com/helloworld.swg")
  • 相对 URL - 指向网站内的数据(比如 href="helloworld.swg")


HTML object tag Reference Manual HTML <object> tag