D
Size: a a a
D
🌹
D
D
D
D
D
D
D
AS
ДК
AS
A
М
VH
M
class Page {
constructor() {
this.elem = document.getElementById('elem');
this.elem.onclick = this.f;
}
f() {
alert(this.elem.textContent);
}
}
this
в функции != this
экземпляра класса....
f = () => {
alert(this.elem.textContent);
}
...
KS
KS
class Page {
constructor() {
this.elem = document.getElementById('elem');
this.elem.onclick = this.f;
}
f() {
alert(this.elem.textContent);
}
}
this
в функции != this
экземпляра класса....
f = () => {
alert(this.elem.textContent);
}
...
A
class Page {
constructor() {
this.elem = document.getElementById('elem');
this.elem.onclick = this.f;
}
f() {
alert(this.elem.textContent);
}
}
this
в функции != this
экземпляра класса....
f = () => {
alert(this.elem.textContent);
}
...
KS
...
this.elem.onclick = this.f.bind(this)
...