μΌλ°ν¨μ, λ©μλνΈμΆ , μμ±μν¨μ(λ¨, ν¨μνμΌλλ§ κ°μ²΄λ₯Ό μμ±νλ©΄ thisκ° μλμΌλ‘ ν λΉ. κ·Έλ°λ°, ν΄λμ€μΌλλ λ€λ¦! μ΄λλ λ³λλ‘ λ°μΈλ©ν΄μ€μΌ ν¨.)
792p eventhandler μ΄λ²€νΈκ° μ€νλ μμ domμμ (onclick μ΄ λ¬λ €μλ νκ·Έ) μ λ°μΈλ©.. λ³λ this λ₯Ό ν λΉν΄μ€μΌ. class μΌλ this. = f μΌλ μ€νμ΄ μλμ΄μ arrow function λ‘.. p792
: callback μ 무쑰건 window, κ·Έλμ μ½λ°± λλ²μ§Έ μΈμμ binding option νμ!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body></body>
<script>
const arr = [1, 2, 3];
const obj = {
increase(e) {
return console.log(this);
},
};
arr.forEach(obj.increase) // window binding
arr.forEach(obj.increase, arr); // arr binding
</script>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
</head>
<body>
<button
class="button1"
onclick="(() => console.log(this))(); handleClick1();"
>
0
</button>
<button class="button2" onclick="handleClick2(event)">0</button>
<button class="button3">0</button>
<button class="button4">0</button>
<script>
function handleClick1() {
console.log(this);
}
//1. button1, window
첫λ²μ§Έ ν¨μμ€νλ¬Έ μμλ μΈμλ‘ thisλ₯Ό λ°λ‘ μ λ¬νκΈ° λλ¬Έμ, button1 μ΄ μΆλ ₯.
λλ²μ§Έ μ€νλ¬Έμ κ²½μ°μλ μΌλ°ν¨μμμμ μ€νλλ μΌλ°ν¨μλ‘ this λ μ μ κ°μ²΄λ₯Ό κ°λ¦¬ν΄.
const handleClick2 = (e) => {
console.log(e);
console.log(this);
};
// 2. click event κ°μ²΄, button2 => window : νμ΄ν ν¨μμ μμ μ€μ½ν μ체λ this!
// μ¦μμ€νλ¬Έ ? ν¨μλ‘ λ°μΈλ©? μΌλ° ν¨μ μμ arr func ..
const $button3 = document.querySelector(".button3");
const $button4 = document.querySelector(".button4");
$button3.onclick = function () {
console.log(this);
};
// 3. button3 => μΌλ°ν¨μμ§λ§.. λ©μλλ‘ μ€νμ΄ λκΈ° λλ¬Έμ binding, λ©μλ νμμΌλ‘.. ν λΉ.
// () => {} λ©΄ window
$button4.addEventListener("click", () => {
console.log(this);
});
// μΌλ°ν¨μ ννλ‘ λ°μΈλ© λλ©΄ λ©μλ νμ λ°μΈλ© λλ¬Έμ.. button4 , νμ΄νν¨μλ λ°μΈλ© μλ¨.
// 4. window μΌλ° ν¨μλ©΄ button4 μλλ©΄ window
</script>
</body>
</html>
λ²μΈ, μ½λ°±ν¨μμ μΈμμ λ¬.
ex. foreach (1. call back, 2. this arg .. (ν λΉ))
1. call back μ ()=> {} λ£μΌλ©΄.. λ°μΈλ© μλ¨!