为什么.filter()不能在Internet Explorer 8中工作?

这是行:

songs = songs.filter(function (el) {
  return el.album==album;
});  

这是错误:

对象不支持此属性或方法

这工作在Chrome中100%罚款。 这是怎么回事?


在版本9之前, Array.filter()不包含在IE中。

你可以用它来实现它:

if (!Array.prototype.filter)
{
  Array.prototype.filter = function(fun /*, thisp */)
  {
    "use strict";

    if (this === void 0 || this === null)
      throw new TypeError();

    var t = Object(this);
    var len = t.length >>> 0;
    if (typeof fun !== "function")
      throw new TypeError();

    var res = [];
    var thisp = arguments[1];
    for (var i = 0; i < len; i++)
    {
      if (i in t)
      {
        var val = t[i]; // in case fun mutates this
        if (fun.call(thisp, val, i, t))
          res.push(val);
      }
    }

    return res;
  };
}

来自:https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/filter

或者,因为您使用的是jQuery,所以您可以先将数组包装到一个jQuery对象中:

songs = $(songs).filter(function(){
  return this.album==album;
}); 

使用es5-shim,所以你可以在IE8中使用filter / indexOf!

Facebook的react.js也使用它。

  <!--[if lte IE 8]>
  <script type="text/javascript" src="/react/js/html5shiv.min.js"></script>
  <script type="text/javascript" src="/react/js/es5-shim.min.js"></script>
  <script type="text/javascript" src="/react/js/es5-sham.min.js"></script>
  <![endif]-->

https://github.com/es-shims/es5-shim


使用attr()函数是否工作?

songs = songs.filter(function (index) {
    return $(this).attr("album") == album;
});  
链接地址: http://www.djcxy.com/p/55323.html

上一篇: Why won't .filter() work in Internet Explorer 8?

下一篇: Chrome and probably Opera sort object properties automatically