Latest web development tutorials

HTML DOM 이미지 src 특성

이미지 객체 참조 이미지 개체

정의 및 사용

SRC는 속성 집합 또는 이미지의 src 속성 값을 반환합니다.

src 속성은 그래프의 URL을 지정합니다.

문법

imageObject.src=URL


브라우저 지원

Internet ExplorerFirefoxOperaGoogle ChromeSafari

모든 주요 브라우저는 src 속성을 지원


<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">

</body>
</html>

»시도


이미지 객체 참조 이미지 개체