25

我正在编写一些使用该Object.bind方法的 JavaScript。

funcabc = function(x, y, z){ 
    this.myx = x;
    this.playUB = function(w) {
        if ( this.myx === null ) {
            // do blah blah
            return;
        }

        // do other stuff
    };
    this.play = this.playUB.bind(this);
};

由于我在 WinXP 中使用 Firefox 开发,有时在 Win7 中使用 IE 9 或 10 进行测试,我没有注意到或注意 IE8 及以下不支持bind.

这个特定的脚本不使用画布,所以我有点犹豫要注销所有 IE 8 用户。

有标准的解决方法吗?

我在 JavaScript 中的表现还不错,但我还是个菜鸟。如果解决方案完全显而易见,请原谅我。

4

4 回答 4

50

此页面上有一个很好的兼容性脚本: https ://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/bind

只需将其复制并粘贴到您的脚本中即可。

编辑:为了清楚起见,将脚本放在下面。

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 is 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.slice.call(arguments)));
        };

    fNOP.prototype = this.prototype;
    fBound.prototype = new fNOP();

    return fBound;
  };
}
于 2012-06-15T16:17:47.217 回答
4

最好的解决方案可能是安装Modernizr

Modernizr 会告诉您当前浏览器是否本地实现了此功能,并且它提供了一个脚本加载器,因此您可以在旧浏览器中引入 polyfill 以回填功能。

这是生成您的modernizr自定义版本的链接:http:
//modernizr.com/download/#-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes

于 2012-12-18T14:33:26.523 回答
2

Internet Explorer 8 及更低版本不支持 Function.prototype.bind。兼容性图在这里: http: //kangax.github.io/es5-compat-table/

Mozilla Developer Network 为未原生实现 .bind() 的旧版浏览器提供了这种替代方案:

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 is 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.slice.call(arguments)));
        };

    fNOP.prototype = this.prototype;
    fBound.prototype = new fNOP();

    return fBound;
  };
}
于 2014-04-22T14:35:46.180 回答
0

Function 构造函数是执行此操作的老式方法:

var foo = function(x,y,z){ return Function("x,y,z","return Math.max.call(this, x, y, z)")(x,y,z) }
 
var bar = function(x,y,z){ return Function("x,y,z","return Math.min.call(this, x, y, z)")(x,y,z) }
 
console.log(foo(1,2,3) );
 
console.log(bar(3,2,1) );

参考

于 2014-04-04T21:37:13.993 回答