汎用の埋め込みオブジェクト。
Note: オブジェクト要素の全プロパティは原則として読み書き可能であるが、環境によっては、元のオブジェクトが一旦実体化されたら読み出し専用になるプロパティもあるだろう。 [HTML 4.01] の OBJECT 要素の定義 を参照。
alignarchivebordercodecode プロパティを参照。codeBasecodeTypecontentDocumentDocument型, 読取専用
null 。datadeclareboolean型
formHTMLFormElement型, 読取専用
FORM 要素。このコントロールがフォームの文脈内にない場合は null。heighthspacelong型
namestandbytabIndexlong型
typeuseMapvspacelong型
width
interface HTMLObjectElement : HTMLElement {
readonly attribute HTMLFormElement form;
attribute DOMString code;
attribute DOMString align;
attribute DOMString archive;
attribute DOMString border;
attribute DOMString codeBase;
attribute DOMString codeType;
attribute DOMString data;
attribute boolean declare;
attribute DOMString height;
attribute long hspace;
attribute DOMString name;
attribute DOMString standby;
attribute long tabIndex;
attribute DOMString type;
attribute DOMString useMap;
attribute long vspace;
attribute DOMString width;
// Introduced in DOM Level 2:
readonly attribute Document contentDocument;
};