当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery hasClass()用法及代码示例


hasClass()是jQuery中的内置方法,用于检查具有指定类名的元素是否存在。
用法:

$(selector).hasClass(className);

参数:它接受“className”参数,该参数指定需要在选定元素中搜索的类名称。

返回值:如果搜索成功,则返回true,否则返回false。
jQuery代码显示此方法的用法方式:


<html> 
  
<head> 
    <script 
    src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <script> 
        $(document).ready(function() { 
            $("button").click(function() { 
                alert($("p").hasClass("find")); 
            }); 
        }); 
    </script> 
    <style> 
        .find { 
            font-size: 120%; 
            color: green; 
        } 
          
        body { 
            width: 50%; 
            height: 200px; 
            border: 2px solid green; 
            padding: 20px; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>Heading 1</h1> 
  
    <p class="find">Geeks for Geeks !.</p> 
    <p>This is normal paragraph.</p> 
  
    <button>Click me!</button> 
  
</body> 
  
</html>

输出:
在点击“点击我!”按钮之前,

点击“点击我!”按钮后,



相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery | hasClass() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。