如何知道类属性是否启用
我想知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定“启用”是什么意思,但您可以使用 hasClass 来查看该元素是否您正在单击的有一个链接到它的类 -
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 -
使用 hasClass 检查 #upload 是否具有 .plupload_droptext 类。
Use hasClass to check whether #upload has the class .plupload_droptext or not.