document.formsは、フォーム要素の配列を返すプロパティ。
構文
$forms = document.forms;
戻り値
フォーム要素の配列。
サンプル
フォーム要素の数:
サンプルの動作について
「forms」ボタンをクリックすると、「フォーム要素の数:」の右横に「」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function sampleGetFormsLength() {
var $nodeList = document.forms;
document.getElementById( "sample" ).innerHTML = $nodeList.length;
}
</script>
function sampleGetFormsLength() {
var $nodeList = document.forms;
document.getElementById( "sample" ).innerHTML = $nodeList.length;
}
</script>
HTML
<button onclick="sampleGetFormsLength();">forms</button>
<div style="margin: 1em;">
フォーム要素の数:<span id="sample"></span>
</div>
<div style="margin: 1em;">
フォーム要素の数:<span id="sample"></span>
</div>