首页 > 代码库 > js 中的call(this)问题

js 中的call(this)问题

原因:我在看underscore的源码时,看到大的框架是().call(this);所以想看一下call(this)的用法,在网上找了这篇帖子:http://i.h-won.com/post/2013-08-29/40052244462,不过还没看懂,所以先记录一下。

疑惑的地方是:

(function(){
var a=1;
console.log(‘in:‘+a);
}).call(this);
console.log(‘out:‘+a);

也不能访问内部的变量呀?

 

js 中的call(this)问题