您好,登錄后才能下訂單哦!
1.$(selector).each(function(index,element))
2.$.each(dataresource,function(index,element))
接下來(lái)就對(duì)這兩個(gè)函數(shù)做深入的探討:
1.$(selector).each(function(index,element))
作用:在dom處理上面用的較多
示例:
html部分文檔
<ul id="each_id">
<li>Coffee</li>
<li>Soda</li>
<li>Milk</li>
</ul>
js遍歷函數(shù):
function traversalDOM(){
$("#each_id li").each(function(){
alert($(this).text())
});
}
輸出結(jié)果:
Coffee
Soda
Milk
2.$.each(dataresource,function(index,element))
作用:在數(shù)據(jù)處理上用的比較多
示例:
此處沒(méi)有html代碼,只有js代碼,如下:
function traversalData(){
var jsonResourceList = '[{"id":"1","tagName":"apple"},{"id":"2","tagName":"orange"},{"id":"3","tagName":"banan
a"},{"id":"4","tagName":"watermelon"}]';
if(jsonResourceList.length >0){
$.each(JSON.parse(jsonResourceList), function(index, obj) {
alert(obj.tagName);
});
}
}
輸出結(jié)果:
apple
orange
banan
watermelon
3.最終結(jié)論:
在遍歷DOM時(shí),通常用$(selector).each(function(index,element))函數(shù);
在遍歷數(shù)據(jù)時(shí),通常用$.each(dataresource,function(index,element))函數(shù)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。