Interface HTMLFormElement

継承元:
HTMLElement
プロパティ:
acceptCharset, action, elements, enctype, length, method, name, target
メソッド:
reset, submit

FORM 要素は、コレクションに似た振る舞いと要素を包含する。 フォーム要素の属性だけでなく、包含しているフォームコントロールへの直接のアクセスも提供する。 HTML 4.01 の FORM 要素の定義 を参照。

プロパティ:

メソッド:

IDL 定義:

interface HTMLFormElement : HTMLElement {
  readonly attribute HTMLCollection  elements;
  readonly attribute long            length;
           attribute DOMString       name;
           attribute DOMString       acceptCharset;
           attribute DOMString       action;
           attribute DOMString       enctype;
           attribute DOMString       method;
           attribute DOMString       target;
  void               submit();
  void               reset();
};


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