jQuery -> 获取兄弟元素
<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').siblings('h2,h3,p'); // Select all H2, H3, and P elements that are siblings of H1 elements.
nextAll()
<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');
$('li.selected ~ li');
next()
.var topHeaders = $('h1'); topHeaders.next('h2').css('margin', '0);
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。