jquery中如何知道div的状态?

发布于 2024-11-01 16:42:15 字数 299 浏览 1 评论 0原文

我正在使用jquery开发一个应用程序。我想知道 div 的状态 div 是显示状态还是隐藏状态 像这样的:

if($("#test").show()==true) 
{
//some operration
}
else
{
//some operration
}

alert($("#test").show()==true); 总是显示 false

请帮我...

i am developin one application using jquery. i want to know the status of the div wheather the div is show state or hide state
something like this:

if($("#test").show()==true) 
{
//some operration
}
else
{
//some operration
}

alert($("#test").show()==true); always shows false.

please help me...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

风轻花落早 2024-11-08 16:42:16

您可以使用 is() 和 :visible 选择器。

if( $('#test').is(':visible') ) { ... }

You can use is() and the :visible selector.

if( $('#test').is(':visible') ) { ... }
避讳 2024-11-08 16:42:16

is(':visible') 当然是正确的。

在我的几乎所有 jQuery 应用程序中,我都引入了一个简单的插件 isVisible

$.fn.isVisible = function() {
    return $.expr.filters.visible(this[0]);
};

对于完全相同的功能,这比上述函数(jsPerf 示例)快大约 50 倍。

if ($('#yourElement').isVisible()) {

is(':visible') is, of course, correct.

In pretty much all my jQuery applications, I introduce a simple plugin isVisible.

$.fn.isVisible = function() {
    return $.expr.filters.visible(this[0]);
};

This is about 50 times faster than the above function (jsPerf example) for exactly the same functionality.

if ($('#yourElement').isVisible()) {
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文