การตรวจสอบ Check Multiple Radio ด้วย jQuery
บทความวันที่ 25 มีนาคม 2556
บทความนี้ขอแนะนำ วิธีการตรวจสอบการ Check Multiple Radio ด้วย jQuery Framwork
ภาพรวมของการตรวจสอบ Check Multiple Radio ด้วย jQuery
1. ตั้ง id หรือ class ให้กลุ่มของ Radio ที่ต้องการตรวจสอบ
2. ใช้ Attrbuite :checked ในการเข้าถึงสถานะของ Radio
3. ใช้คำสั่ง length ในการนับว่ามี radio กี่ตัวที่มีการ Checked
ตัวอย่างโปรแกรม
<script type='text/javascript' src='jquery.js'></script>
<script>
function checkRadio() {
var radio = $("#radio:checked").length;
alert( "you checked radio = "+radio );
}
</script>
Radio 1 <input type='radio' name='radio' id='radio' /><br/>
Radio 2 <input type='radio' name='radio' id='radio' /><br/>
Radio 3 <input type='radio' name='radio' id='radio' /><br/>
Radio 4 <input type='radio' name='radio' id='radio' /><br/>
<input type='button' onclick='checkRadio();' value='check radio' />
ผลลัพธ์
คำค้นหา การตรวจสอบ Check Multiple Radio ด้วย jQuery, รับเขียนเว็บไซต์, รับสอนเขียนโปรแกรม