- [window.]document.forms (e3/N2)
- フォームオブジェクトの配列。
- [window.]document.forms.length (e3/N2)
- フォームオブジェクトの配列の個数。
- [window.]document.form (e3/N2)
- 個々のフォームオブジェクト。 例えば <FORM NAME=form1> と生成したフォームは、次のいずれかの書式で指定する。(0 はドキュメント中の最初のフォームを表す)
document.forms[0]
document.forms["form1"]
document.form1
- [window.]document.form.action (e3/N2)
- <FORM ACTION=〜>で指定したアクション。 R/W可。(IE3はRのみ)
- [window.]document.form.encoding (e3/N2)
- <FORM ENCTYPE=〜>で指定したエンコードタイプ。
- [window.]document.form.length (e3/N2)
- [window.]document.form.elements.length と同じ。
- [window.]document.form.method (e3/N2)
- <FORM METHOD=〜>で指定した通信タイプ。
- [window.]document.form.name (e3/N2)
- <FORM NAME=〜>で指定したフォーム名。
- [window.]document.form.target (e3/N2)
- <FORM TARGET=〜>で指定したターゲットウィンドウ。
- [window.]document.form.handleEvent(event) (N4)
- フォームのイベントハンドラを呼び出す。
- [window.]document.form.reset() (e4/N3)
- リセットボタンを押したのと同じ効果を起こす。
- [window.]document.form.submit() (e3/N2)
- サブミットボタンを押したのと同じ効果を起こす。
- [window.]document.form.elements (e3/N2)
- フォームを構成するエレメントオブジェクト(入力フィールドなどの総称)の配列。
- [window.]document.form.elements.length (e3/N2)
- フォームを構成するエレメントオブジェクトの配列の個数。
- [window.]document.form.element (e3/N2)
- フォームを構成する個々のエレメントオブジェクト。 次のいずれかの書式で指定する。
document.form1.text1 ... text1はNAMEで指定した名前
document.form1.elements[0] ... 0はオブジェクトの通し番号
- [window.]document.form.element.checked (e3/N2)
- checkbox, radioに有効。現在チェックされているかどうか(true|false)。
- [window.]document.form.element.defaultChecked (e3/N2)
- checkbox, radioに有効。初期値としてチェックされていたかどうか(true|false)。
- [window.]document.form.element.defaultValue (e3/N2)
- password, text, textareaに有効。初期値として表示されていた文字列。
- [window.]document.form.element.form (e3/N2)
- button, checkbox, file, hidden, password, radio, reset, select, submit, text, textareaに有効。このエレメントを包含するフォームオブジェクト。
- [window.]document.form.element.length (e3/N2)
- selectに有効。オプションオブジェクトの個数。 [window.]document.form.element.options.lengthと同じ。
- [window.]document.form.element.name (e3/N2)
- button, checkbox, file, hidden, password, radio, reset, select, submit, text, textareaに有効。このエレメントの名前。
- [window.]document.form.element.options (e3/N2)
- selectに有効。<OPTION>に対応するオプションオブジェクトの配列。
- [window.]document.form.element.options.length (e3/N2)
- selectに有効。<OPTION>に対応するオプションオブジェクトの配列の個数。
- [window.]document.form.element.option (e3/N2)
- selectに有効。個々のオプションオブジェクト。document.form1.select1.options[0] のように指定する。
- [window.]document.form.element.option.defaultSelected (e3/N2)
- 初期値として選択されていたかどうか(true|false)。
- [window.]document.form.element.option.selected (e3/N2)
- 現在選択されているかどうか(true|false)。
- [window.]document.form.element.option.text (e3/N2)
- オプションとして表示されている文字列。
- [window.]document.form.element.option.value (e3/N2)
- フォーム値として送信される値。<TEXTAREA>に対しては、"AAA\nBBB" のように、\n を指定してやると、改行させることができる。
- [window.]document.form.element.selectedIndex (e3/N2)
- selectに有効。現在選択されているオプションオブジェクトを示すインデックス番号。 これに値を代入することにより、セレクションボックスの選択項目を変更することができる。
- [window.]document.form.element.type (e4/N3)
- button, checkbox, file, hidden, password, radio, reset, select, submit, text, textareaに有効。このエレメントのタイプ。
- [window.]document.form.element.value (e3/N2)
- button, checkbox, file, hidden, password, radio, reset, select(IEのみ?), submit, text, textareaに有効。 ボタン(button, submit, reset)の場合はボタンに表示される文字列、それ以外の場合はフォームの入力結果として送信されるエレメントの値。
- [window.]document.form.element.blur() (e3/N2)
- button, checkbox, file, password, radio, reset, select, submit, text, textareaに有効。このエレメントからフォーカスをはずす。
- [window.]document.form.element.click() (e3/N2)
- button, checkbox, radio, reset, submitに有効。このエレメントをクリックしたことにする。
- [window.]document.form.element.focus() (e3/N2)
- button, checkbox, file, password, radio, reset, select, submit, text, textareaに有効。このエレメントにフォーカスを移す。
- [window.]document.form.element.handleEvent(event) (N4)
- button, checkbox, file, password, radio, reset, select, submit, text, textareaに有効。 フォーム部品のイベントハンドラを呼び出す。
- [window.]document.form.element.select() (e3/N2)
- fileに有効。