FORM
要素は、コレクションに似た振る舞いと要素を包含する。 フォーム要素の属性だけでなく、包含しているフォームコントロールへの直接のアクセスも提供する。 HTML 4.01 の
FORM 要素の定義 を参照。
acceptCharset
action
elements
HTMLCollection
型, 読取専用
enctype
Note: onsubmit イベントハンドラは、このメソッドの呼出し時の発動を保証されない。振る舞いは歴史的な理由で矛盾しており、著者は特定の振る舞いに依存するべきではない。[訳注: submit メソッドの注記のエラーか?]
length
long
型, 読取専用
method
name
target
reset
( )フォーム要素の規定値に回復する。リセットボタンと同様の挙動をする。
(無し)
submit
( )フォームを送信する。送信ボタンと同じ挙動をする。
(無し)
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(); };