jQuery提供了許多方法來遍歷元素。以下是一些常用的方法:
.each()
:用于遍歷一個jQuery對象中的每個元素。$("selector").each(function() {
// 遍歷的操作
});
.children()
:返回一個包含指定元素的所有直接子元素的新jQuery對象。$("selector").children();
.find()
:返回一個包含指定元素的所有后代元素的新jQuery對象。$("selector").find();
.parent()
:返回一個包含指定元素的直接父元素的新jQuery對象。$("selector").parent();
.parents()
:返回一個包含指定元素的所有祖先元素的新jQuery對象。$("selector").parents();
.prev()
:返回指定元素的前一個同級元素的新jQuery對象。$("selector").prev();
.next()
:返回指定元素的后一個同級元素的新jQuery對象。$("selector").next();
.siblings()
:返回指定元素的所有同級元素的新jQuery對象。$("selector").siblings();
這些方法只是jQuery提供的一小部分遍歷元素的方法,還有其他方法可以根據需求進行選擇和使用。