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