Function.prototype的apply和call是在1999年發布的ECMA262 Edition3中才加入的(1998年發布ECMA262 Edition2)。在先前的瀏覽器如IE5.01(JScript 5.0)中是沒有apply和call的。因此會帶來一些相容性問題,以下是修復方式:
複製代碼代碼如下:
if(!Function.prototype.apply){
Function.prototype.apply = function(obj, args){
obj = obj == undefined ? window : Object(obj);//obj可以是js基本型別
var i = 0, ary = [], str;
if(args){
for( len=args.length; i<len; i++ ){
ary[i] = "args[" + i + "]";
}
}
obj._apply = this;
str = 'obj._apply(' + ary.join(',') + ')';
try{
return eval(str);
}catch(e){
}finally{
delete obj._apply;
}
};
}
if(!Function.prototype.call){
Function.prototype.call = function(obj){
var i = 1, args = [];
for( len=arguments.length; i<len; i++ ){
args[i-1] = arguments[i];
}
return this.apply(obj, args);
};
}