Jquery’this’关键字和选择器的基本过滤器

前端之家收集整理的这篇文章主要介绍了Jquery’this’关键字和选择器的基本过滤器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在jQuery中使用’this’关键字时,添加基本过滤器的语法是什么.

例如:

$(this):contains('foo')

$(this):visible OR $(this:visible)
最佳答案
用于搜索此内的项目:

$(':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"');
    }
原文链接:https://www.f2er.com/jquery/428464.html

猜你在找的jQuery相关文章