关于this绑定的情况
var fu = function(one,two){
log(this,one,two);
};
var r={}, g={}, b={}, y={};
r.method = fn;
1.r.method(g,b);
2.fn(g,b);
3.fn.call(r,g,b);
4.r.method.call(y,g,b);
5.setTimeout(fn,1000);
6.setTimeout(r.method,1000);
7.setTimeout(function(){
r.method(g,b);
},1000);
以上7种情况中:1.通过点符号(.)...