has

영어 [hæz]

v.Have(have의 3인칭 단수) take; buy

class

English [klɑ:s ]美[klæs]

n.class; grade; adj.매우 좋음, 훌륭함, 탁월함

vi.... 카테고리(또는 레벨)에 속함, 특정 카테고리(또는 레벨)로 나열됨

jquery hasClass() 메서드 통사론

기능: hasClass() 메서드는 선택한 요소에 지정된 클래스가 포함되어 있는지 확인합니다.

구문: ​​$(selector).hasClass(class)

매개변수:

ParametersDescription
class 필수입니다. 지정된 요소에서 찾을 클래스를 지정합니다.

jquery hasClass() 메서드 예

<html>
<head>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    alert($("p:first").hasClass("intro"));
  });
});
</script>
<style type="text/css">
.intro
{
font-size:120%;
color:red;
}
</style>
</head>

<body>
<h1 id="h1">This is a heading</h1>
<p class="intro">This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>检查第一个段落是否拥有类 "intro"</button>
</body>
</html>
인스턴스 실행 »

온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요