标签:调用函数 hello object java 并且 窗口 func 输出 this
在调用函数的时候偶尔在函数内部会使用到this,在使用this的时候发现并不是我们想要指向的对象.可以通过bind,call,apply来修改函数内部的this指向.
<script> var a=2 function hello(){ console.log(this) console.log(this.a) } hello() //输出: window => object //输出: 2 </script>
bind(option)
函数内部的this指向option
这个对象<script> var a=2 var obj={ a:"a" } function hello(){ console.log(this) console.log(this.a) } hello=hello.bind(obj) hello() //输出: obj => { a:‘a‘ } //输出: ‘a‘ </script>
call(option)
函数内部的this指向option
这个对象var a=2 var obj={ a:"a" } function hello(){ console.log(this) console.log(this.a) } hello.call(obj) //输出: obj => { a:‘a‘ } //输出: ‘a‘
apply(option)
函数内部的this指向option
这个对象var a=2 var obj={ a:"a" } function hello(){ console.log(this) console.log(this.a) } hello.apply(obj) //输出: obj => { a:‘a‘ } //输出: ‘a‘
//call var a = 2 var obj={ a:‘a‘ } function hello(a, b, c) { console.log(this) console.log(a, b, c) } hello.call(obj,1,2,3) // { a:‘a‘ } 1,2,3 //apply var a = 2 var obj={ a:‘a‘ } function hello(a, b, c) { console.log(this) console.log(a, b, c) } hello.apply(obj,[1,2],3,4) // { a:‘a‘ } 1,2,undefind,undefind
js修改函数内部的this指向(bind,call,apply)
标签:调用函数 hello object java 并且 窗口 func 输出 this
原文地址:https://www.cnblogs.com/kongyijilafumi/p/13235836.html