jQuery.hasClass() 函数

hasClass() 函数

判断当前选择元素是否有指定的类名

语法

$(selector).hasclass(classname)

返回值

返回值为布尔型(true/false)

如果当前选择对象包含多个元素,只要其中任意一个元素包含该类名,则返回true

实例说明

代码

 1 
 2 
 3 
 4     
 5 
 6 
 7 
 8 
9
10
11
    12
  • one
  • 13
  • two
  • 14
  • three
  • 15
16
17 22 23

运行结果

King_dream

2015-04-16 17:10:52

 

转载于:https://www.cnblogs.com/King-dream/p/4432655.html

你可能感兴趣的:(jQuery.hasClass() 函数)