DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> 自編forEach方法(兼容所有浏覽器)
自編forEach方法(兼容所有浏覽器)
編輯:JavaScript基礎知識     

//->自己在內置類的原型上擴展一個myForEach來處理forEach不兼容的問題
//callBack:回調函數,遍歷數組中的一項,就要執行一次callBack
//context:改變callBack方法中的this指向

Array.prototype.myForEach = function myForEach(callBack, context) {
typeof context === "undefined" ? context = window : null;

if ("forEach" in Array.prototype) {
this.forEach(callBack, context);
return;
}

//->不兼容處理
for (var i = 0; i < this.length; i++) {
typeof callBack === "function" ? callBack.call(context, this[i], i, this) : null;
}
};





 
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved