[펌글] this.form으로 알아보는 HTML DOM 에서의 this의 의미
– 출처 : 네이버 지식인 – HTML(Javascript)에서 this로 의미되는 것은 크게 두가지 형태가 있습니다. 첫째. window.document 를 가르킬때. <FORM name=take_form> <INPUT type=’button’ value=’계산해라!’ onclick=’take_plus(this.form)’ > </FORM> 위 소스에서 take_plus(this.form) 에 해당되는 부분인데요, take_plus라는 자바스크립트 function을 버튼 클릭시에 실행하게 돼는데, 해당 function을 호출할때 this.form이라는 파라메터를 넘긴것을 볼수있습니다 여기서 this.form은 풀어쓰면 window.document.form이라고도 볼수있는것이구요 javascript의 객체 접근방법은 상위객체에서 하위객체로… Read More »