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.
<nav class="myNav"> <ul> <li>foo</li> <li>bar</li> </ul> </nav>
我想使用 Jquery 选择第二个 li 元素(其中包含“bar”的元素)。
使用$('.myNav ul li:eq(1)')which 会给你第二个 li 元素。
$('.myNav ul li:eq(1)')
$('.myNav ul li:nth-child(2)')
小提琴。
$('nav.myNav > ul > li:eq(1)')
http://jsfiddle.net/Fsnjq/