Interface HTMLElement

継承元:
Element
プロパティ:
className, dir, id, lang, title
メソッド:

HTML 要素インターフェイスの全ては、このクラスから派生する。 HTML コア属性が出現するだけの要素は、 HTMLElement インターフェイスをもとに表現される。そのような要素は次のとおりである:

Note: HTML 要素の style 属性は、 CSS モジュール [DOM Level 2 Style Sheets and CSS] で定義される ElementCSSInlineStyle インターフェイスを通してアクセスできる。

プロパティ:

IDL 定義:

interface HTMLElement : Element {
           attribute DOMString       id;
           attribute DOMString       title;
           attribute DOMString       lang;
           attribute DOMString       dir;
           attribute DOMString       className;
};


Issued: / Revised: / All rights reserved. © 2002-2016 TAKI