下面的代码通过document.images获取网页中的所有图片,然后获取第一个图片的id属性
<!DOCTYPE html> <html> <body> <img id="klematis lilac" border="0" src="klematis.jpg" width="150" height="113"> <img id="klematis pink" border="0" src="klematis2.jpg" width="152" height="128"> <p>Id of first image: <script> document.write(document.images[0].id); </script></p> </body> </html>
上面的代码返回:Id of first image: klematis lilac