반응형
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Dunk Low
- dunklow
- react
- 덩크 로우
- GIT
- 리액트
- dunk high
- 제이쿼리
- 주식
- stockx.com
- jQuery
- 오라클
- 덩크로우
- oracle
- Nike
- 주식공부
- 발매예정
- 코로나19
- 덩크 하이
- Linux
- Python
- 나이키
- Github
- sacai
- 자바스크립트
- 리눅스
- JavaScript
- draw
- 드로우
- 파이썬
Archives
- Today
- Total
Life goes slowly...
[Javascript] 자바스크립트의 this 란? 본문
728x90
반응형
자바스크립트(Javascript)의 this 란?
자바스크립트(Javascript)의 this란 일반적으로 메소드를 호출한 객체가 저장되어 있는 속성을 말합니다. 하지만 메소드를 호출할때 뿐만 아니라 일반 함수를 호출할때에도 만들어지기도 하며 이벤트가 호출될때에도 this의 속성이 만들어지기도 합니다.
자바스크립트(Javascript)의 this 종류
1. 일반 함수에서의 this (Window 내의 객체를 말합니다.)
2. 이벤트 리스너에서의 thins (이벤트를 발생한 객체를 말합니다.)
3. 메소드의 this (메소드를 호출한 객체를 말합니다.)
4. 일반 중첩함수의 this (Window 내의 객체를 말합니다.)
5. 메소드 내부의 중첩함수의 this (Window 내의 객체를 말합니다.)
일반 함수 내부의 this는 전역 객체인 window가 저장됩니다.
//일반함수의 this 사용방법
var test = 1;
function testData() {
this.test = 10;
test = 20;
console.log(" test = " + test);
console.log(" this.test = " + this.test);
console.log(" window.test = " + window.test);
}
testData();
=============================================
" test = 20"
" this.test = 20"
" window.test = 20"
//이벤트 리스너의 this 사용방법
var test = 1;
$("#testEvent").click(function () {
this.test = 10;
test = 20;
console.log(" test = " + test);
console.log(" this.test = " + this.test);
console.log(" window.test = " + window.test);
});
=============================================
" test = 20"
" this.test = 10"
" window.test = 20"
//메소드의 this 사용방법
var test = 1;
function testFn() {
this.test = 0;
}
testFn.prototype.method1 = function () {
this.test = 10;
test = 20;
console.log(" test = " + test);
console.log(" this.test = " + this.test);
console.log(" window.test = " + window.test);
}
var test2 = new testFn();
test2.method1();
=============================================
" test = 20"
" this.test = 10"
" window.test = 20"
//일반 중첩함수의 this 사용방법
var test = 1;
function testFn1() {
function testFn2() {
this.test = 10;
test = 20;
console.log(" test = " + test);
console.log(" this.test = " + this.test);
console.log(" window.test = " + window.test);
}
testFn2();
}
testFn1();
===========================================================
" test = 20"
" this.test = 20"
" window.test = 20"
//메소드 내부의 중첩함수의 this 사용방법
var test = 1;
function testFn() {
this.test = 0;
}
testFn.prototype.method1 = function () {
function inner() {
this.test = 10;
test = 20;
console.log(" test = " + test);
console.log(" this.test = " + this.test);
console.log(" window.test = " + window.test);
}
inner();
}
var test2 = new testFn();
test2.method1();
===========================================================
" test = 20"
" this.test = 20"
" window.test = 20"
728x90
반응형
'프로그래밍 > Javascript' 카테고리의 다른 글
[Javascript] innerText와 innerHTML 차이점 (0) | 2021.03.03 |
---|---|
[Javascript] 자바스크립트 이메일 유효성 검사(정규식 표현) (0) | 2021.02.27 |
[jQuery] 제이쿼리(jquery) selectbox의 이벤트 (0) | 2021.02.26 |
[jQuery] checkbox 의 리스트 중 체크된 값 가져오기 (2) | 2021.02.25 |
[Javascript] 소수점 올림, 버림, 반올림 - ceil(), floor(), round() 함수 (0) | 2021.01.15 |
[Javascript] URL의 포트 조회함수 - location.port (0) | 2021.01.12 |
[Javascript] 문자열을 코드로 인식하기 - eval() 함수 (0) | 2021.01.08 |
[Javascript] 문자 여부를 판단하기 - isFinite() 함수 (0) | 2020.12.20 |
Comments