最佳答案
用于搜索此内的项目:
原文链接:https://www.f2er.com/jquery/428464.html$(':visible,any-selector',this)
$(this).find(':visible,any-selector')
如果你想要一个真或假的回报:
if($(this).is(':visible,any-selector')){
alert('this is visible,or matches "any-selector"');
}
else{
alert('this is hidden,or doesn\'t match "any-selector"');
}