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.
我有一系列幻灯片
$slide = $(".slide")
这些幻灯片中只有一张也有“当前”类。如何从数组中选择它?
使用过滤方法见这里。
$(".slide").filter('.current');
您可以使用.filter()
.filter()
var $slide = $(".slide").filter('.current');
或者只是将选择器更改为需要两个类:
var $slide = $(".slide.current");