Interface HTMLSelectElement

継承元:
HTMLElement
プロパティ:
disabled, form, length, multiple, name, options, selectedIndex, size, tabIndex, type, value
メソッド:
add, blur, focus, remove

select 要素はオプションの選択を許可する。包含するオプションは、select 要素からコレクションとして直接アクセス可能である。 HTML 4.01 の SELECT 要素の定義 を参照。

プロパティ:

メソッド:

IDL 定義:

interface HTMLSelectElement : HTMLElement {
  readonly attribute DOMString       type;
           attribute long            selectedIndex;
           attribute DOMString       value;
  // Modified in DOM Level 2:
           attribute unsigned long   length;
                                        // raises(DOMException) on setting
  readonly attribute HTMLFormElement form;
  // Modified in DOM Level 2:
  readonly attribute HTMLOptionsCollection options;
           attribute boolean         disabled;
           attribute boolean         multiple;
           attribute DOMString       name;
           attribute long            size;
           attribute long            tabIndex;
  void               add(in HTMLElement element, 
                         in HTMLElement before)
                                        raises(DOMException);
  void               remove(in long index);
  void               blur();
  void               focus();
};


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