function bindThis(f, oTarget) { return function(x,y){ return f.call(oTarget,x,y); }; } call、apply、bind都是改变this指向的方法. dn.call(): 当前实例(函数fn)通过原型链的查找机制,找到function.prototype...