jQuery hasClass() 方法

jQuery HTML/CSS 方法

hasClass()方法检查被选元素是否包含指定的类名称。

如果包含指定的类名,则hasClass()方法将返回true。

语法:

$(selector).hasClass(className)

实例

检查任何<p>元素是否具有名为“ highlight”的类:

$("button").click(function(){
  alert($("p").hasClass("highlight"));
});
测试看看‹/›

元素可能分配了一个以上的类:

$("p").click(function(){
  alert($(this).hasClass("blue"));
});
测试看看‹/›

参数值

参数描述
className要搜索的类名

jQuery HTML/CSS 方法