模块  jdk.xml.dom
软件包  org.w3c.dom.html

Interface HTMLObjectElement

  • All Superinterfaces:
    ElementHTMLElementNode

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

    另见Document Object Model (DOM) Level 2 Specification

    从以下版本开始:
    1.4,DOM Level 2
    • 方法详细信息

      • getForm

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

        String getCode()
        Applet类文件。 请参阅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中的存档属性定义。
      • setArchive

        void setArchive​(String archive)
      • getBorder

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

        void setBorder​(String border)
      • getCodeBase

        String getCodeBase()
        基本URI classiddataarchive属性。 请参阅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中的数据属性定义。
      • 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()
        此图像,小程序或对象左侧和右侧的水平空间。 请参阅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中的备用属性定义。
      • setStandby

        void setStandby​(String standby)
      • getTabIndex

        int getTabIndex()
        表示元素在Tab键顺序中的位置的索引。 请参阅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()
        此图像,小程序或对象上方和下方的垂直空间。 请参阅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