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.
这就是我检查页面上的第一张图片是否有类的方法:
$("img").first().hasClass('happy')
我有一个 div,并希望检查其中的第二张图片以获取课程。我该怎么做呢?
您可以使用eq()来获取集合中包含的特定元素。
eq()
$("div").find("img:eq(1)").hasClass("happy");
注意:它是从零开始的,所以第二个元素是 index 1。
1
$("div.my-class img:eq(1)").hasClass('happy');
这是它的 jquery 文档。
使用eq()
$("img").eq(1).hasClass('happy')
请注意,使用 访问第一个元素,使用 访问eq(0)第二个元素eq(1)。
eq(0)
eq(1)