Module jdk.xml.dom
Package org.w3c.dom.html

Interface HTMLObjectElement

所有超级接口:
Element, HTMLElement, Node

public interface HTMLObjectElement extends HTMLElement
通用嵌入对象。注意。原则上,对象元素上的所有属性都是可读写的,但在某些环境中,一旦底层对象实例化,某些属性可能是只读的。请参阅HTML 4.0中的OBJECT元素定义。

另请参阅文档对象模型(DOM)Level 2规范

自从:
1.4, DOM Level 2
  • Method Details

    • getForm

      HTMLFormElement getForm()
      返回包含此控件的FORM元素。如果此控件不在表单上下文中,则返回null
    • getCode

      String getCode()
      Applet类文件。请参阅HTMLAppletElement的code属性。
    • setCode

      void setCode(String code)
    • getAlign

      String getAlign()
      将此对象(垂直或水平)与其周围文本对齐。请参阅HTML 4.0中的align属性定义。此属性在HTML 4.0中已弃用。
    • setAlign

      void setAlign(String align)
    • getArchive

      String getArchive()
      存档的空格分隔列表。请参阅HTML 4.0中的archive属性定义。
    • setArchive

      void setArchive(String archive)
    • getBorder

      String getBorder()
      对象周围边框的宽度。请参阅HTML 4.0中的border属性定义。此属性在HTML 4.0中已弃用。
    • setBorder

      void setBorder(String border)
    • getCodeBase

      String getCodeBase()
      classiddataarchive属性的基本URI。请参阅HTML 4.0中的codebase属性定义。
    • setCodeBase

      void setCodeBase(String codeBase)
    • getCodeType

      String getCodeType()
      通过classid属性下载的数据的内容类型。请参阅HTML 4.0中的codetype属性定义。
    • setCodeType

      void setCodeType(String codeType)
    • getData

      String getData()
      指定对象数据位置的URI。请参阅HTML 4.0中的data属性定义。
    • setData

      void setData(String data)
    • getDeclare

      boolean getDeclare()
      声明(供将来参考),但不实例化此对象。请参阅HTML 4.0中的declare属性定义。
    • setDeclare

      void setDeclare(boolean declare)
    • getHeight

      String getHeight()
      覆盖高度。请参阅HTML 4.0中的height属性定义。
    • setHeight

      void setHeight(String height)
    • getHspace

      String getHspace()
      此图像、applet或对象左右的水平空间。请参阅HTML 4.0中的hspace属性定义。此属性在HTML 4.0中已弃用。
    • setHspace

      void setHspace(String hspace)
    • getName

      String getName()
      提交表单时的表单控件或对象名称。请参阅HTML 4.0中的name属性定义。
    • setName

      void setName(String name)
    • getStandby

      String getStandby()
      加载对象时要呈现的消息。请参阅HTML 4.0中的standby属性定义。
    • setStandby

      void setStandby(String standby)
    • getTabIndex

      int getTabIndex()
      表示元素在制表顺序中的位置的索引。请参阅HTML 4.0中的tabindex属性定义。
    • setTabIndex

      void setTabIndex(int tabIndex)
    • getType

      String getType()
      通过data属性下载的数据的内容类型。请参阅HTML 4.0中的type属性定义。
    • setType

      void setType(String type)
    • getUseMap

      String getUseMap()
      使用客户端图像映射。请参阅HTML 4.0中的usemap属性定义。
    • setUseMap

      void setUseMap(String useMap)
    • getVspace

      String getVspace()
      此图像、applet或对象上方和下方的垂直空间。请参阅HTML 4.0中的vspace属性定义。此属性在HTML 4.0中已弃用。
    • setVspace

      void setVspace(String vspace)
    • getWidth

      String getWidth()
      覆盖宽度。请参阅HTML 4.0中的width属性定义。
    • setWidth

      void setWidth(String width)
    • getContentDocument

      Document getContentDocument()
      此对象包含的文档(如果有并且可用),否则为null
      自从:
      1.4, DOM Level 2