jQuery 是一個常用的 JavaScript 庫,它提供了很多方便的方法來處理 HTML 文檔。其中,.children() 方法可以用來獲取當(dāng)前元素的子元素。
$(document).ready(function(){ $("#parent").children().each(function(){ // 循環(huán)處理子元素 }); });
上面的代碼演示了如何使用 .children() 方法循環(huán)處理父元素 #parent 的所有子元素。請注意,在 .children() 后面調(diào)用 .each() 方法,這樣才能實現(xiàn)循環(huán)操作。具體來說,.each() 方法會遍歷 .children() 返回的元素集合,并對每個元素執(zhí)行指定的操作。
另外,.children() 方法也可以接受一個選擇器作為參數(shù),用來篩選子元素。例如:
$(document).ready(function(){ $("#parent").children("div").each(function(){ // 處理父元素中的 div 子元素 }); });
上面的代碼只會處理父元素 #parent 中的<div>
子元素。