document.forms用法詳細解

798 ワード

もっと読む
document.forms用法詳細解
1.1概要
        document.formsは、現在のドキュメントにあるすべてのform要素を含む集合(HTMLCollectionオブジェクト)を返します.
1.2文法
        document.forms:現在のページを取得するすべてのフォーム要素を表します.
        document.forms[0]:現在のページを取得する最初のフォーム要素を表します.
        document.forms['export Servlet]:現在のページのname="export Servlet"を取得するフォーム要素を表します.
        document.forms.submit()/document.forms[0].submit()
//document.forms['export Servlet].submit():提出関数を表します.
1.3例
        例——フォーム情報を取得して提出します.
$(function(){ 
    var thisForm = document.forms[0]; 
    console.info(thisForm.username.value); 
    console.info(thisForm.address.value); 
    document.forms[0].submit();
})