Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

jQuery ที่ใกล้เคียงที่สุด () พร้อมตัวอย่าง


เมธอดที่ใกล้เคียงที่สุด () ใน jQuery ใช้เพื่อส่งคืนบรรพบุรุษแรกขององค์ประกอบที่เลือก

ไวยากรณ์

ไวยากรณ์มีดังนี้ −

$(selector).closest(filter)

ตัวอย่าง

ให้เราดูตัวอย่างการใช้ jQuery ที่ใกล้เคียงที่สุด () วิธีการ -

<!DOCTYPE html>
<html>
<head>
<style>
   .demo * {
      display: block;
      border: 2px solid blue;
      padding: 5px;
      margin: 15px;
   }
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
   $(document).ready(function(){
      $("span").closest("ol").css({"background-color": "orange", "color": "black","border": "3px dashed orange"});
   });
</script>
</head>
<body class="demo">body
<div style="width:600px;">
<ol>ol
<ol>ol
<ol>ol
<li>li
<span>span</span>
</li>
</ul>
</ul>
</ul>
</div>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

jQuery ที่ใกล้เคียงที่สุด () พร้อมตัวอย่าง