jQuery检查元素隐藏

jQuery中可以使用show和hide方法来控制元素隐藏和显示。

那么如何检查元素是否隐藏呢?

我们可以使用jQuery的is方法配合:visible和:hidden来实现。

// Checks css for display:[none|block], ignores visibility:[true|false]
$(element).is(":visible"); 

// The same works with hidden
$(element).is(":hidden");

 

(0)
上一篇 2020年3月25日 下午10:23
下一篇 2020年3月25日 下午10:45

相关推荐

发表回复

登录后才能评论