在取得指定元素的兄弟元素時,可以使用adjacent sibling combinator ( ),其中的兩側內容都是selector expression.
如果要取得下例中所有的h1的直接兄弟元素h2
Main title
Main title
Section title
Some content...
Section title
More content...
複製程式碼
程式碼如下
$('h1 h2')
複製程式碼
程式碼如下:
$('h1').siblings(' h2,h3,p');
// Select all H2, H3, and P elements that are siblings of H1 elements.
複製程式碼
程式碼如下:
程式碼如下:
程式碼如下:
First item Second Item Third item Fourth item
Fifth item 如果要取得第二個條目之後的所有li元素,可以使用以下程式碼
複製程式碼
程式碼如下:
複製程式碼
複製程式碼 程式碼如下: $('li.selected ~ li'); 取得直接兄弟元素也可以不使用selector,直接使用next (). 複製程式碼 程式碼如下: var topHeaders = $('h1'); >topHeaders.next('h2').css('margin', '0);