var forEach = (function(){
//陣列與偽陣列的遍歷
var _Array_forEach = function (array, block, context) {
if (array == null) return;
//對String進行特殊處理
if(typeof array == "string"){
array = array.split("");
}
var i = 0,length = array.length;
for (;i < length && block.call(context, array[i], (i+1), array)!==false; i++) {}
};
//物件的遍歷
var _Function_forEach = function (object, block, context) {
for (var key in object) {
//只遍歷本地屬性
if (object.hasOwnProperty(key)&&block.call(context, object[key], key, object)===false){
break;
return function(object, block, context){
if (object == null) return;
if (typeof object.length == "number") {
_Array_forEach(object, block, context);
}else{
_Function_forEach(object, block, context);
})()
來看一點例子
//1:1 \n 2:2
forEach([1,2,3,4,5],function(el,index){
if(index>2){
return false;
alert(index+":"+el);
});
function print(el,index){
//a:a \n b:b \n c:c
forEach({a:"a",b:"b",c:"c"},print);
//1:笨 \n 2:蛋 \n 3:的 \n 4:座 \n 5:右 \n 6:銘
forEach("笨蛋的座右銘",print);
function Person(name, age) {
this.name = name || "";
this.age = age || 0;
Person.prototype = new Person;
var fred = new Person("笨蛋的座右銘", 25);
fred.language = "chinese";//極晚繫結
//name:jxl \n age:22 \n language:chinese
forEach(fred,print);
注:回撥函式中的index引數下標從1開始
為什麼不用內建的forEach
和getElementsByClassName一樣,內建的forEach效率很高,但是在功能上有侷限性,它無法在迴圈中途退出。而在我們這個forEach中,它可以在處理函式內透過返回false的方式退出迴圈,更加的靈活。
特別的length屬性
length屬性是一個很特別的屬性,看到陣列,大家一定會想到length,那看到帶有length屬性的物件呢?那大家一定要想到偽陣列(類陣列)。那什麼是偽陣列呢?簡單的理解就是能透過Array.prototype.slice轉換為真正的陣列的帶有length屬性的物件。javascript最為著名的偽陣列就是arguments物件。關於偽陣列有很多東西,以後我會專門寫一篇博文講這個東西。大家只要記住:不要隨便給物件賦予length屬性,除非你明確的
var forEach = (function(){
//陣列與偽陣列的遍歷
var _Array_forEach = function (array, block, context) {
if (array == null) return;
//對String進行特殊處理
if(typeof array == "string"){
array = array.split("");
}
var i = 0,length = array.length;
for (;i < length && block.call(context, array[i], (i+1), array)!==false; i++) {}
};
//物件的遍歷
var _Function_forEach = function (object, block, context) {
for (var key in object) {
//只遍歷本地屬性
if (object.hasOwnProperty(key)&&block.call(context, object[key], key, object)===false){
break;
}
}
};
return function(object, block, context){
if (object == null) return;
if (typeof object.length == "number") {
_Array_forEach(object, block, context);
}else{
_Function_forEach(object, block, context);
}
};
})()
來看一點例子
//1:1 \n 2:2
forEach([1,2,3,4,5],function(el,index){
if(index>2){
return false;
}
alert(index+":"+el);
});
function print(el,index){
alert(index+":"+el);
}
//a:a \n b:b \n c:c
forEach({a:"a",b:"b",c:"c"},print);
//1:笨 \n 2:蛋 \n 3:的 \n 4:座 \n 5:右 \n 6:銘
forEach("笨蛋的座右銘",print);
function Person(name, age) {
this.name = name || "";
this.age = age || 0;
};
Person.prototype = new Person;
var fred = new Person("笨蛋的座右銘", 25);
fred.language = "chinese";//極晚繫結
//name:jxl \n age:22 \n language:chinese
forEach(fred,print);
注:回撥函式中的index引數下標從1開始
為什麼不用內建的forEach
和getElementsByClassName一樣,內建的forEach效率很高,但是在功能上有侷限性,它無法在迴圈中途退出。而在我們這個forEach中,它可以在處理函式內透過返回false的方式退出迴圈,更加的靈活。
特別的length屬性
length屬性是一個很特別的屬性,看到陣列,大家一定會想到length,那看到帶有length屬性的物件呢?那大家一定要想到偽陣列(類陣列)。那什麼是偽陣列呢?簡單的理解就是能透過Array.prototype.slice轉換為真正的陣列的帶有length屬性的物件。javascript最為著名的偽陣列就是arguments物件。關於偽陣列有很多東西,以後我會專門寫一篇博文講這個東西。大家只要記住:不要隨便給物件賦予length屬性,除非你明確的