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

ใช้ jQuery เพื่อรับค่าของช่องทำเครื่องหมายที่เลือก?


ได้ เราสามารถใช้ jQuery เพื่อรับค่าของช่องทำเครื่องหมายที่เลือกโดยใช้แนวคิดของอินพุต เราต้องใช้ :checked selector ด้วย

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Document</title>
</head>
<link rel="stylesheet"
href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<body>
   <input type="checkbox" name="checkDemo" id="check1" value="Cricket" />
   <label for="check1">Cricket</label>
   <input type="checkbox" name="checkDemo" id="check2" value="Listening Music" />
   <label for="check2">Listening Music</label>
<input type="checkbox" name="checkDemo" id="check3" value="Reading NewsPaper" />
<label for="check3">Reading NewsPaper</label>
<br>
<button type="button">Click Me</button>
<script>
   $(document).ready(function () {
      $("button").click(function () {
         $('input[name="checkDemo"]:checked').each(function () {
            console.log(this.value);
         });
      });
   });
</script>
</html>

ในการรันโปรแกรมข้างต้น ให้บันทึกชื่อไฟล์ anyName.html(index.html) และคลิกขวาที่ไฟล์ เลือกตัวเลือก “เปิดด้วยเซิร์ฟเวอร์จริง” ในตัวแก้ไข VS Code

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

ใช้ jQuery เพื่อรับค่าของช่องทำเครื่องหมายที่เลือก?

ตอนนี้ เลือกช่องทำเครื่องหมาย −

ใช้ jQuery เพื่อรับค่าของช่องทำเครื่องหมายที่เลือก?

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

ใช้ jQuery เพื่อรับค่าของช่องทำเครื่องหมายที่เลือก?