Interface HTMLInputElement

継承元:
HTMLElement
プロパティ:
accept, accessKey, align, alt, checked, defaultChecked, defaultValue, disabled, form, maxLength, name, readOnly, size, src, tabIndex, type, useMap, value
メソッド:
blur, click, focus, select

フォームコントロール。

Note: ページが表示される環境次第では, ファイルアップロード入力型については value プロパティが読み取り専用になってよい。 "password" 入力型については、返される実際の値は権限のない使用を回避するために隠されてよい。 [HTML 4.01] の INPUT 要素の定義 を参照。

プロパティ:

メソッド:

IDL 定義:

interface HTMLInputElement : HTMLElement {
           attribute DOMString       defaultValue;
           attribute boolean         defaultChecked;
  readonly attribute HTMLFormElement form;
           attribute DOMString       accept;
           attribute DOMString       accessKey;
           attribute DOMString       align;
           attribute DOMString       alt;
           attribute boolean         checked;
           attribute boolean         disabled;
           attribute long            maxLength;
           attribute DOMString       name;
           attribute boolean         readOnly;
  // Modified in DOM Level 2:
           attribute unsigned long   size;
           attribute DOMString       src;
           attribute long            tabIndex;
  // Modified in DOM Level 2:
           attribute DOMString       type;
           attribute DOMString       useMap;
           attribute DOMString       value;
  void               blur();
  void               focus();
  void               select();
  void               click();
};


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