本文介绍了我如何使用hasClass来检测一个类是不是我想要的类?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我如何使用hasClass,因此它的工作方式为doesNotHaveClass?换句话说,不是要查看它是否是指定的类,而是查看它是否不是指定的类。我可以使用感叹号或类似的东西吗?
How do I use hasClass so it works as doesNotHaveClass? In other words, rather than looking to see if it is a specified class, looking to see if it is NOT a specified class. Can I use an exclamation point or something like that?
推荐答案
是的,你可以。
if (!$('element').hasClass('do-not-want')) {
// This element does not have the .do-not-want class
}
这篇关于我如何使用hasClass来检测一个类是不是我想要的类?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!