code.progysm.com

HTMLDocument.images

Propriété de HTMLDocument

Type: NamedNodeList

Exemple:
	<body><img name="a" src="a.png" /><img name="b" src="b.png" /></body>

	document.images[0].src // a.png
	document.images['b'].src // b.png
	document.images.length // 2

Voir aussi:
	Image
	HTMLImageElement