첫 번째 이미지의 ID를 반환하려면 JavaScript의 images 속성을 사용하세요.
예시
다음 코드를 실행하여 문서의 첫 번째 이미지 ID를 반환할 수 있습니다. −
<!DOCTYPE html> <html> <body> <img id="image1" src="https://www.tutorialspoint.com/html5/images/html5-mini-logo.jpg"> <img id="image2" src="https://www.tutorialspoint.com/hive/images/hive-mini-logo.jpg"> <img id="image3" src="https://www.tutorialspoint.com/sas/images/sas-mini-logo.jpg"> <img id="image4" src="https://www.tutorialspoint.com/maven/images/maven-mini-logo.jpg"> <script> var val = document.images.length; document.write("<br>Number of images in the document: "+val); document.write("<br>The id of the first image: "+document.images[0].id); </script> </body> </html>