이 기사의 예에서는 JS가 이미지 대체 정보를 얻는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
다음 JS 코드는 이미지의 alt 속성을 통해 이미지의 프롬프트 정보를 얻을 수 있습니다
<!DOCTYPE html> <html> <body> <img id="compman" src="compman.gif" alt="Crazy computerman" width="107" height="98"> <p>The value of the alt atrribute is: <script> document.write(document.getElementById("compman").alt); </script> </p> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.