在Internet Explorer中修复JavaScript数组功能(indexOf,forEach等)

在Internet Explorer中修复JavaScript数组功能(indexOf,forEach等),第1张

在Internet Explorer中修复JavaScript数组功能(indexOf,forEach等)

许多人使用MDC后备实现(例如,用于indexOf)。它们通常严格地符合标准,甚至达到显式检查所有参数类型的程度。

不幸的是,尽管很显然作者认为该代码是微不足道的并且可以自由使用,但是似乎没有明确的许可将其书面形式写入。如果这是可接受的许可证,则整个Wiki都是CCAttribution-ShareAlike(尽管CC并非针对此类代码而设计)。

js方法总体上看起来还可以,但是在功能应该是怎样的边缘(例如,未定义的列表项,使列表发生变化的函数)的边缘并不符合标准。它还充满了其他随机的非标准方法,包括一些可疑的方法,例如狡猾的stripTags和不完整的UTF-8编解码器(考虑到

unescape(enpreURIComponent)
技巧,这也是不必要的)。

物有所值,这就是我的用处(如果可以说完全具有版权,我特此将其发布到公共领域)。它比MDC版本短一点,因为它不尝试键入嗅探您还没有完成诸如传递非函数回调或非整数索引之类的愚蠢 *** 作,但除此之外,它还尝试符合标准。(让我知道我是否错过了任何事情。

'use strict';// Add ECMA262-5 method binding if not supported natively//if (!('bind' in Function.prototype)) {    Function.prototype.bind= function(owner) {        var that= this;        if (arguments.length<=1) { return function() {     return that.apply(owner, arguments); };        } else { var args= Array.prototype.slice.call(arguments, 1); return function() {     return that.apply(owner, arguments.length===0? args : args.concat(Array.prototype.slice.call(arguments))); };        }    };}// Add ECMA262-5 string trim if not supported natively//if (!('trim' in String.prototype)) {    String.prototype.trim= function() {        return this.replace(/^s+/, '').replace(/s+$/, '');    };}// Add ECMA262-5 Array methods if not supported natively//if (!('indexOf' in Array.prototype)) {    Array.prototype.indexOf= function(find, i ) {        if (i===undefined) i= 0;        if (i<0) i+= this.length;        if (i<0) i= 0;        for (var n= this.length; i<n; i++) if (i in this && this[i]===find)     return i;        return -1;    };}if (!('lastIndexOf' in Array.prototype)) {    Array.prototype.lastIndexOf= function(find, i ) {        if (i===undefined) i= this.length-1;        if (i<0) i+= this.length;        if (i>this.length-1) i= this.length-1;        for (i++; i-->0;)  if (i in this && this[i]===find)     return i;        return -1;    };}if (!('forEach' in Array.prototype)) {    Array.prototype.forEach= function(action, that ) {        for (var i= 0, n= this.length; i<n; i++) if (i in this)     action.call(that, this[i], i, this);    };}if (!('map' in Array.prototype)) {    Array.prototype.map= function(mapper, that ) {        var other= new Array(this.length);        for (var i= 0, n= this.length; i<n; i++) if (i in this)     other[i]= mapper.call(that, this[i], i, this);        return other;    };}if (!('filter' in Array.prototype)) {    Array.prototype.filter= function(filter, that ) {        var other= [], v;        for (var i=0, n= this.length; i<n; i++) if (i in this && filter.call(that, v= this[i], i, this))     other.push(v);        return other;    };}if (!('every' in Array.prototype)) {    Array.prototype.every= function(tester, that ) {        for (var i= 0, n= this.length; i<n; i++) if (i in this && !tester.call(that, this[i], i, this))     return false;        return true;    };}if (!('some' in Array.prototype)) {    Array.prototype.some= function(tester, that ) {        for (var i= 0, n= this.length; i<n; i++) if (i in this && tester.call(that, this[i], i, this))     return true;        return false;    };}

其他未在此处实现的ECMA262-5方法包括Array

reduce
/
reduceRight
,JSON和一些
Object
可以可靠地实现为JS函数的新方法。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5009182.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存