我在类<a>中有一些brandPagination元素

如果我使用这个:

console.log($j('.brandPagination'));


我得到一个包含五个项目的数组。我要第n个。所以我尝试了:

console.log($j('.brandPagination:nth-of-type(1)'));


这将输出一个空数组,为什么以及我该怎么办?

最佳答案

您可以使用

$j('.brandPagination:eq(0)');
// or
$j('.brandPagination').eq(0);


请记住,nth-of-type从1开始,而jQuery的eq从零开始。

关于javascript - 我如何在按类(class)检索的项目数组中获得第n个 child ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26670942/

10-09 21:02