이 글의 예시에서는 JS를 이용하여 이미지의 URL(src)을 동적으로 수정하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
다음 JS 코드는 이미지 주소를 동적으로 수정하여 새 이미지를 표시할 수 있습니다. 이는 실제로 이미지의 src 속성을 수정하여 달성됩니다.
<!DOCTYPE html> <html> <head> <script> function changeSrc() { document.getElementById("myImage").src="hackanm.gif"; } </script> </head> <body> <img id="myImage" src="compman.gif" width="107" height="98"> <br><br> <input type="button" onclick="changeSrc()" value="Change image"> <p><b>Note:</b> The src property can be changed at any time. However, the new image inherits the height and width attributes of the original image, if not new height and width properties are specified.</p> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.