原文地址:http://ejohn.org/apps/learn/感谢jquery之父给我们写了这么好的一份学习资料. (一) 我们的目标 (Our Goal) 1.目标:理解下面的函数: 1: // The .bind method from Prototype.js
2: Function.prototype.bind = function(){
3: var fn = this, args = Array.prototype.slice.call(arguments), object = args.shift();
...
[More]