jquery的$(selector).each(function(index,element))和$.each(dataresource,function(index,element))的區別

$(selector).each(function(index,element))

定義和用法

each() 方法規定爲每一個匹配元素規定運行的函數。html

$(selector).each(function(index,element))jquery

參數 描述
function(index,element)

必需。爲每一個匹配元素規定運行的函數。json

  • index - 選擇器的 index 位置
  • element - 當前的元素(也可以使用 "this" 選擇器)

做用:在dom方面用的較多app

 

示例dom

 

html部分文檔函數

 

<ul id="each_id">
<li>Coffee</li>
<li>Soda</li>
<li>Milk</li>
</ul>this

 

js遍歷函數:spa

 

    $("li").each(function(){
      alert($(this).text())
    });.net

 

效果3d

 

 $.each(dataresource,function(index,element))

做用:在數據處理上用的比較多

示例:

此處沒有html代碼,只有js代碼,以下:

function traversalData(){
var jsonResourceList = '[{"id":"1","tagName":"apple"},{"id":"2","tagName":"orange"},{"id":"3","tagName":"banana"},{"id":"4","tagName":"watermelon"}]';
if(jsonResourceList.length >0){
$.each(JSON.parse(jsonResourceList), function(index, obj) {
    alert(obj.tagName);
});
}
}

 

輸出結果:

最終結論:

在遍歷DOM時,一般用$(selector).each(function(index,element))函數;

在遍歷數據時,一般用$.each(dataresource,function(index,element))函數。

 

參考自:http://www.w3school.com.cn/jquery/traversing_each.asp

https://blog.csdn.net/gao_xu_520/article/details/78588977

相關文章
相關標籤/搜索