hasClass(class) | jQuery API 3.2 中文文档 | jQuery API 在线手册

jQuery API 3.2.1

推荐办理招商信用卡,新户首刷礼,五折享美食,需要的速度围观~click here
首页  >  筛选  > hasClass(class) 源码下载

返回值:BooleanhasClass(class)

概述

检查当前的元素是否含有某个特定的类,如果有,则返回true。

这其实就是 is("." + class)。

参数

class String V1.2

用于匹配的类名

示例

描述:

给包含有某个类的元素进行一个动画。

HTML 代码:
            <div class="protected"></div><div></div>
          
jQuery 代码:
            $("div").click(function(){
  if ( $(this).hasClass("protected") )
    $(this)
      .animate({ left: -10 })
      .animate({ left: 10 })
      .animate({ left: -10 })
      .animate({ left: 10 })
      .animate({ left: 0 });
});