<!DOCTYPE html>
<html>
<head>
<title</title>
</head>
<body>
<img src="aaa.gif">
<img src="bbb.jpg">
<img src="ccc.png">
<script type="text/JavaScript">
document.write(document.images + "<br />");
var img_list = document.images;
for(var i = 0; i < img_list.length; i++)
document.write(img_list[i].src + "<br />");
/*
run:
[object HTMLCollection]
http://localhost:8080/aaa.gif
http://localhost:8080/bbb.jpg
http://localhost:8080/ccc.png
*/
</script></body>
</html>