Find an element that contains a specified class using jquery

  • جي كويري

Find an element that contains a specified class using jquery

الأجوبة

HTML Code :

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Find an element that contains a specified class</title>
</head>
<body>
<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
<style>
  .divclass {
    width: 90px;
    height: 75px;
    margin: 5px;
    background-color:#F3E2A9
  }
  </style>
</head>
<body>
<div id="div1" class="divclass"></div>
<div id="div2" </div>
<div id="div3" </div>  
 </body>
</html>

JavaScript Code :

console.log($( "#div1" ).hasClass( "divclass" ).toString());
console.log($( "#div2" ).hasClass( "divclass" ).toString());
console.log($( "#div3" ).hasClass( "divclass" ).toString());
هل كان المحتوى مفيد؟

معلومات ذات صلة

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...