each() 方法規定為每個符合元素規定執行的函數。這篇文章主要跟大家介紹jQuery中each方法的使用詳解,需要的朋友參考下吧
#概述:
each() 方法規定為每個匹配元素規定運行的函數。
傳回 false 可用於及早停止循環,相當於break。
傳回 true 可以結束本次循環,相當於continue。
語法:
$(selector).each(function(index,element){ }) index - 选择器的 index 位置 element - 当前的元素(也可使用 "this" 选择器) $(selector).each(function(){ }) $.each(array,function(Key,Value){ })
1.遍歷js數組
$(function(){ var array=["aaa","bbb","ccc"]; $.each(array,function(i,j){ alert(i+":"+j); //i表示索引,j代表值 }); })
2.遍歷Object物件
##var obj = new Object();
obj.name="zs";
$.each(obj, function(name, value) {
alert(this); //this指向当前属性的值,等价于value
alert(name); //name表示Object当前属性的名称
alert(value); //value表示Object当前属性的值
});
var json ={"name":"zhangSan","role":"student"};
$.each(json,function(key,value){
alert(key+":"+value);
});
var json =[{"name":"Amy","role":"student"},{"name":"Tom","role":"student"}];
$.each(json, function(index, value) {
alert("index="+index+"\n" +"name:"+value.name+"\n"+"role:"+value.role+"\n");
});
<head> <meta charset="utf-8" /> <title>遍历jQuery对象</title> <script src="js/jquery-1.12.4.js"></script> <script type="text/javascript"> $(function(){ $("input[type='button']").bind("click",function(){ $("li").each(function(){ alert($(this).text()) }); }); }); </script> </head> <body> <input type="button" value="触发事件"/> <ul> <li>first</li> <li>second</li> </ul> </body>
上面是我整理給大家的,希望今後會對大家有幫助。
微信小程式之分享頁面如何傳回首頁的範例js中el表達式的使用與非空判斷方法JS實作左邊列表移到右邊列表功能#######以上是jQuery中each方法的使用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!