<!--자기 자신을 참조하는 불편한 방법-->
<input type="button" id="target" onclick="alert('Hello world, '+document.getElementById('target').value);" value="button" />
<!--this를 통해서 간편하게 참조할 수 있다-->
<input type="button" onclick="alert('Hello world, '+this.value);" value="button" />
<input type="button" onclick="alert('Hello world, '+this.value);" value="button" />

this 를 이용하여 자기자신을 불러오기 떄문에 id를 참조하지 안아도 되어 관리하기 편하다

'HTML 참고서 > HTML 생활코딩 Youtube' 카테고리의 다른 글

20.JavaScript event 1  (0) 2020.04.17
19.JavaScript property  (0) 2020.04.17
17.JavaScript Coding setInterval  (0) 2020.04.17
16.JavaScript NodeText  (0) 2020.04.17
15.JavaScript Node API  (0) 2020.04.16
블로그 이미지

Or71nH

,