溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

關(guān)于js中each的用法

發(fā)布時(shí)間:2020-06-17 09:33:26 來(lái)源:網(wǎng)絡(luò) 閱讀:804 作者:勇敢的鑫 欄目:web開(kāi)發(fā)


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ù)。


向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI