대상을 향한 3-this의 용법
1223 단어 대상을 향하다
<script type="text/javascript">
function Aaa(){
var _this=this; //_this Aaa
this.a=12;
setInterval(function(){
// console.log(this) //this window
_this.show();
},1000)
}
Aaa.prototype.show=function(){
console.log(this.a)
}
var obj=new Aaa();
// obj.show()
</script>
2. 이벤트가 있을 때this는 이벤트 대상을 가리킨다
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
</head>
<body>
<script type="text/javascript">
function Bbb(){
// console.log(this) //this Bbb
var _this=this;
this.b=5;
// document.getElementById("btn").onclick=this.show // this input
document.getElementById("btn").onclick=function(){
_this.show()
}
}
Bbb.prototype.show=function(){
console.log(this.b) /*this */
}
window.onload=function(){
new Bbb();
}
</script>
<input type="button" name="" id="btn" value=" " />
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
루비 대상 지식 요약initialize 방법은 표준적인 루비 클래스 방법으로 클래스의 구조 함수이며 다른 대상 프로그래밍 언어의constructor 작업 원리와 유사하다.대상을 만드는 동시에 클래스 변수를 초기화하려면 initializ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.