Interface HTMLTextAreaElement

継承元:
HTMLElement
プロパティ:
accessKey, cols, defaultValue, disabled, form, name, readOnly, rows, tabIndex, type, value
メソッド:
blur, focus, select

複数行のテキストフィールド。 HTML 4.01 の TEXTAREA 要素の定義 を参照。

プロパティ:

メソッド:

IDL 定義:

interface HTMLTextAreaElement : HTMLElement {
  // Modified in DOM Level 2:
           attribute DOMString       defaultValue;
  readonly attribute HTMLFormElement form;
           attribute DOMString       accessKey;
           attribute long            cols;
           attribute boolean         disabled;
           attribute DOMString       name;
           attribute boolean         readOnly;
           attribute long            rows;
           attribute long            tabIndex;
  readonly attribute DOMString       type;
           attribute DOMString       value;
  void               blur();
  void               focus();
  void               select();
};


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