재훈재훈
getElementById() 본문
getElementById('ID').function
html 문서 내의 id element(ID)에 접근하여 특정 동작(function)을 취하게 하는 JS function
Src
<!DOCTYPE html>
<html>
<body>
<h1>What Can JavaScript Do?</h1>
<p>JavaScript can change HTML attributes.</p>
<p>In this case JavaScript changes the src (source) attribute of an image.</p>
<button onclick="document.getElementById('myImage').src='pic_bulbon.gif'">Turn on the light</button>
<img id="myImage" src="pic_bulboff.gif" style="width:100px">
<button onclick="document.getElementById('myImage').src='pic_bulboff.gif'">Turn off the light</button>
</body>
</html>
ScreenShot
'Computer Engineering > JavaScript' 카테고리의 다른 글
this (0) | 2018.05.15 |
---|---|
상속 (0) | 2018.04.07 |
constructor 프로퍼티 (0) | 2018.04.07 |
prototype 프로퍼티 (0) | 2018.04.07 |
클로저 (0) | 2018.04.07 |