function fn1(){
console.log(this)
}
function fn2(){
var obj = {name:'李四',fn:fn2};
(fn2,obj.fn)();//是window
(obj.fn)();//是obj
不明白为什么是这样
浮云间
相关分类