如何定位符合此条件的元素?
我有下一个代码:
if($(".class").is(':visible') && !$(".class").hasClass('match_group')){
/// target those elements with that specific condition, the goal I wanna reach implies doing things like for example:
$(".class").is(':visible').css({'background-color':'blue'}):
//or even better attatch a event handler if posssible
}
我在另一个论坛上建议我使用.closest()
并在其中加入条件,但我不知道如何