指针指向
- 在对象方法中,this指向调用它所在方法的对象
- 单独使用this,它指向全局变量对象window
- 函数使用中,this指向函数所有者
- 严格模式下函数没有绑定到this,这时this是undefined
- 在 HTML 事件句柄中,this 指向了接收事件的 HTML 元素
- apply 和 call 允许切换函数执行的上下文环境(context),即 this 绑定的对象,可以将 this 引用到任何对象
this与call
<p id="demo"></p>
<script>var person1 = {fullName: function() {return this.firstname + " " + this.lastname;}};var person2 = {firstname: "nagisb",lastname: "nagisb2",};var x = person1.fullName.call(person2); //调用fullName()方法,并使方法作用的this指针指向类person2
document.getElementById("demo").innerHTML= x; //代码复用与解耦
</script>