這次帶給大家jQuery裡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当前属性的值 });
3.遍歷JSON物件
var json ={"name":"zhangSan","role":"student"}; $.each(json,function(key,value){ alert(key+":"+value); });
4.遍歷由多個JSON物件組成的陣列
######################## #
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>
以上是jQuery裡each方法使用案例的詳細內容。更多資訊請關注PHP中文網其他相關文章!