DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery 獲取兄弟元素的幾種不錯方法
jQuery 獲取兄弟元素的幾種不錯方法
編輯:JQuery特效代碼     
獲取指定元素的兄弟元素時,可以使用adjacent sibling combinator (+),其中+的兩側內容都是selector expression.
如果要獲取下例中所有的 h1的直接兄弟元素h2
. 代碼如下:
<div>
<h1>Main title</h1>
<h2>Section title</h2>
<p>Some content...</p>
<h2>Section title</h2>
<p>More content...</p>
</div>

可以直接使用
. 代碼如下:
$('h1 + h2')
// Select ALL h2 elements that are adjacent siblings of H1 elements.

如果要過濾h1的兄弟元素,當然也可以使用
. 代碼如下:
$('h1').siblings('h2,h3,p');
// Select all H2, H3, and P elements that are siblings of H1 elements.

如果要獲取當前元素之後的所有兄弟元素,可以使用nextAll()
例如,針對下面的html代碼
. 代碼如下:
<ul>
<li>First item</li>
<li class="selected">Second Item</li>
<li>Third item</li>
<li>Fourth item</li>
<li>Fifth item</li>
</ul>

如果要獲取第二個條目之後的所有li元素,可以使用如下代碼
. 代碼如下:
$('li.selected').nextAll('li');

上例也可以使用general sibling combinator (~)來實現
. 代碼如下:
$('li.selected ~ li');

獲取直接兄弟元素也可以不使用selector,直接使用next().
. 代碼如下:
var topHeaders = $('h1');
topHeaders.next('h2').css('margin', '0);
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved