前端開發者應該很清楚 Javscript 腳本的 function 函數物件可以透過 call 或 apply 方法,使其改變內部作用域(this)所指向的對象,實現更多可擴展的功能開發。 ie 原生支援function 物件的call 和apply 方法,在firefox 或其它瀏覽器下也得到支持,但是call 和apply 方法是立即作用並執行,例如:
var func = function () {
alert(this);
}.apply(window);
alert(this);
}.apply(window);
alert(this);
}.apply(window);
alert(this);
}.apply(window);
複製程式碼
程式碼如下:
if (!Function.prototype.bind) {
Function.prototype.bind = function. (oThis) {
if (typeof this !== "function") {
// closest thing possible to the ECMAScript 5 internal IsCallable function
throw new TypeError("Function.prototype.bind - what whatis whatis. trying to be bound is not callable");
}
var aArgs = Array.prototype.slice.call(arguments, 1),
fToBind = this,
fNOP = function () {} ,
fBound = function () {
return fToBind.apply(this instanceof fNOP && oThis
? this
: oThis,
aArgs.concat(Array.prototype. )));
};
fNOP.prototype = this.prototype;
fBound.prototype = new fNOP();
return fBound; }; } return fBound; }; } 看懂這段程式碼需要點功底,我只是知道如何拿來用,如果哪位大牛有興趣能夠介紹一下這段源碼的原理,不勝感激,謝謝! 單純不是什麼態度,而是一種滿足。