Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个序列中有一些 div 元素,例如:
<div id="a"></div> <div id="b"></div> <div id="c"></div> <div id="d"></div>
假设我有第三个位置 div 的 id,即c. 现在我想访问 div 元素,它位于 id 为的 div 的上方和下方(在本例中分别为 b 和 d)c。我怎么能在jquery中做到这一点?
c
您可以使用.prev()和.next()
.prev()
.next()
$('#c').prev(); $('#c').next();
http://jsfiddle.net/MAd2K/
你可以这样做
$('#c').prev('div'); $('#c').next('div');
现场演示
</p>