通过类选择器如何定位到第一个jQuery对象?因为$('.class')[0]就已经转化为DOM对象了啊。
// 1. 转换为DOM对象(不建议使用数组下标) $(".class").get(0) // 2. 获取jQuery对象 $(".class").eq(0)
//eq(index) 这里的index为下标 $('.class').eq(0) //:first $('.class:first') 两个办法都可以
$('.class').eq(0)
$(this).parent().next();