如何知道类属性是否启用

发布于 2024-12-04 19:24:37 字数 265 浏览 0 评论 0原文

我想知道 plupload_droptext 类是否在运行时启用? 如果是,我想执行一些操作。

      $('#upload').click(function() {
            if( $('.plupload_droptext').enabled)
            {
                alert("Add files");
            }
        });

如果有人知道请帮助我。

i want to know whether the plupload_droptext class is enabled while runtime or not?
and i want to perform some action if yes.

      $('#upload').click(function() {
            if( $('.plupload_droptext').enabled)
            {
                alert("Add files");
            }
        });

if any one know help me please.

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

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

发布评论

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

评论(2

戏蝶舞 2024-12-11 19:24:37

我不确定“启用”是什么意思,但您可以使用 hasClass 来查看该元素是否您正在单击的有一个链接到它的类 -

  $('#upload').click(function() {
        if( $(this).hasClass('.plupload_droptext'))
        {
            alert("Add files");
        }
    });

I'm not sure what you mean by 'enabled' but you could use hasClass to see if the element you are clicking has a class linked to it -

  $('#upload').click(function() {
        if( $(this).hasClass('.plupload_droptext'))
        {
            alert("Add files");
        }
    });
爱给你人给你 2024-12-11 19:24:37

使用 hasClass 检查 #upload 是否具有 .plupload_droptext 类。

 $('#upload').click(function() {
    if($(this).hasClass('plupload_droptext'))
    {
    alert("Add files");
    }
});

Use hasClass to check whether #upload has the class .plupload_droptext or not.

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