诠释JavaScript中的this – 小方。
使用this的几种场合
1. 执行函数时,判断函数是对象方法还是一个单独的函数?单独的函数this===window;
对象方法,this == 对象。
console.log(this === window);
this.instancePro = 1;
}
UseThis.objPro = 2;
UseThis.objMethod = function(){
console.log(this.objPro);
}
UseThis();//true 不管嵌套多深,执行函数时,函数内的this === window
console.log(instancePro);// 1
var useThis = new UseThis();//false 当前是A是个构造函数,构造函数内的this,是new创建的实例
console.log(useThis.instancePro);// 1
UseThis.objMethod();//2 当前函数是对象方法,this===UseThis
var fn = UseThis.objMethod;
fn();//undefined
打开测试页面,启动调试器
2. 函数由bind方法返回后,this指向bind的第一个参数。
3. 通过call(apply)执行函数,this指向call(apply)的第一个参数。
function doubleBind() {
console.log(this.doubleVariable);
}
(function () {
console.log(this.doubleCalendar);//2
doubleBind.call({doubleVariable: 1});// 1
}).call({doubleVariable: 2});
4. 一个函数,先调用bind,再使用call执行时,this指向bind的第一个参数。
function funBind() {
console.log(this.pro);
}
var relFun = funBind.bind({pro: 2});
relFun.call({pro: 3});// 2
出道题
variable :“sprying”,
cons_fun:function(){
console.log(this.variable);
}
}
var new_obj = new con_inObj.cons_fun();//?
<!– from 前端乱炖 –>
var x = 5;
var example = {
x: 100,
a: function () {
var x = 200;
console.log(‘a context: %s, var x = %s’, this.x, x);
},
b: function () {
var x = 300;
return function () {
var x = 400;
console.log(‘b context: %s, var x = %s’, this.x, x);
};
},
c: function () {
var other = {
x: 500
};
var execB = this.b().bind(other);
execB();
return execB;
}
}
console.log(‘example.x:’ + example.x);
example.a();
example.b()();
example.a.call({
x: 9999
});
var execB = example.c();
execB.call({
x: 9999
});
想知道结果的同学,点击链接,打开调试器
文章首发:http://www.cnblogs.com/sprying/p/3573456.html
本文链接:http://www.cnblogs.com/sprying/p/3573456.html,转载请注明。