0

我有这段代码,我不想选择其中的第三个元素:

<body>
    <div>First element</div>
    <div>Second element</div>
    <div>Third element</div>
</body>

我如何在 jQuery 中做到这一点?

4

2 回答 2

3

干得好。这是做到这一点的方法之一。

 $(document).ready(function(){
   var thirdDiv = $("div").eq(2);
   console.log(thirdDiv);    
});​
于 2012-04-21T22:03:46.060 回答
0

看看这里:http ://api.jquery.com/nth-child-selector/

基本上,如果您执行以下操作: $("div:nth-child(3)").append(" - 3nd!");

于 2012-04-21T22:03:35.070 回答