您的位置首页百科快答

原生js兼容(indexOf,forEach,currentStyle)

原生js兼容(indexOf,forEach,currentStyle)

的有关信息介绍如下:

原生js兼容(indexOf,forEach,currentStyle)

indexOf兼容方法if(!Array.indexOf){ Array.prototype.indexOf = function(obj){ for(var i=0; i

forEach兼容方法if (!Array.prototype.forEach) { Array.prototype.forEach = function(fun /*, thisp*/){ var len = this.length; if (typeof fun != "function") throw new TypeError(); var thisp = arguments; for (var i = 0; i < len; i++){ if (i in this) fun.call(thisp, this[i], i, this); } }; }

currentStyle兼容方法HTMLElement.prototype.__defineGetter__("currentStyle", function () { return this.ownerDocument.defaultView.getComputedStyle(this, null);});