.hasClass() เป็นการใช้ jQuery Manipulation กับ .hasClass() ใช้สำหรับการตรวจสอบ element ที่อ้างถึงว่ามี class ที่กำหนดหรือตรวจสอบหรือไม่
Syntax
.hasClass( className )
Example ตัวอย่างการใช้งาน jQuery .hasClass()
ManipulationhasClass.html
<html>
<head>
<title>ThaiCreate.Com jQuery Tutorials</title>
<style>
p { margin: 8px; font-size:16px; }
.selected { color:red; }
</style>
<script type="text/javascript" src="jquery-1.6.4.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div#result1").append($("p:first").hasClass("selected").toString());
$("div#result2").append($("p:last").hasClass("selected").toString());
$("div#result3").append($("p").hasClass("selected").toString());
});
</script>
</head>
<body>
<p>This paragraph is black and is the first paragraph.</p>
<p class="selected">This paragraph is red and is the second paragraph.</p>
<div id="result1">First paragraph has selected class: </div>
<div id="result2">Second paragraph has selected class: </div>
<div id="result3">At least one paragraph has selected class: </div>
</body>
</html>
Screenshot
คำอธิบาย (ภาษาไทย)
จากตัวอย่างเป็นการใช้ jQuery Manipulation กับ .hasClass() ในการจัดการกับ element ที่อ้างถึง