目录

HTML DOM object 对象


Object 对象

Object 对象表示 HTML <object> 元素。

访问Object 对象

您可以使用 getElementById() 访问 <object> 元素:

示例

var x = document.getElementById("myObject");
亲自试一试 »

创建Object 对象

您可以使用 document.createElement() 方法创建 <object> 元素:

示例

var x = document.createElement("OBJECT");
亲自试一试 »


对象属性

Property Description
align Not supported in HTML5. Use style.cssFloat instead.
Sets or returns the alignment of the object according to the surrounding text
archive Not supported in HTML5.
Sets or returns a string that can be used to implement your own archive functionality for the object
border Not supported in HTML5. Use style.border instead.
Sets or returns the border around the object
code Not supported in HTML5.
Sets or returns the URL of the file that contains the compiled Java class
codeBase Not supported in HTML5.
Sets or returns the URL of the component
codeType Not supported in HTML5.
data Sets or returns the URL of the resource to be used by the object
declare Not supported in HTML5.
form Returns a reference to the object's parent form
height Sets or returns the height of the object
hspace Not supported in HTML5. Use style.margin instead.
Sets or returns the horizontal margin of the object
name Sets or returns the name of the object
standby Not supported in HTML5.
Sets or returns a message when loading the object
type Sets or returns the content type for data downloaded via the data attribute
useMap Sets or returns the name of a client-side image map to be used with the object
vspace Not supported in HTML5. Use style.margin instead.
Sets or returns the vertical margin of the object
width Sets or returns the width of the object

标准属性和事件

Object对象也支持标准特性事件


相关页面

HTML 参考:HTML <对象> 标签