當前位置:成語大全網 - 書法字典 - Javascript遍歷字典值

Javascript遍歷字典值

功能?test2(數據,索引){

var?結果,溫度;?//返回值和臨時變量

for(var?我?在?數據){

temp = data[I];

if(temp['name']?& amp& amp?temp['index']==index){

result = temp[' name '];

打破;?//如果已經返回,則中止。

}

//如果沒有找到,則遍歷menus參數下的數據。

if(typeof?結果== '未定義'?& amp& amp?temp['menus']){

result=test2(temp['menus'],index);

}

}

回歸?結果;

}