ต้องการให้เลือก checkbox ได้เพียง 1 รายการเท่านั้น หากไม่มีการเลือก
รายการใดๆ ให้แจ้งเตือนก่อนการส่งข้อมูล
วิธีการ ทำตามขั้นตอนคร่าวๆ ประมาณนี้
1. กำหนด class ให้กับ checkbox ทุกตัวที่ต้องการ โดยใช้ class ชื่อเดียวกัน
1 | <input name= "data_item1" type= "checkbox" class = "css_data_item" id= "data_item1" value= "1" /> |
โค้ด javascript
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <script type= "text/javascript" > $( function (){ $( ".css_data_item" ).click( function (){ // เมื่อคลิก checkbox ใดๆ if ($( this ).prop( "checked" )== true ){ // ตรวจสอบ property การ ของ var indexObj=$( this ).index( ".css_data_item" ); // $( ".css_data_item" ).not( ":eq(" +indexObj+ ")" ).prop( "checked" , false ); // ยกเลิกการคลิก รายการอื่น } }); $( "#form_checkbox1" ).submit( function (){ // เมื่อมีการส่งข้อมูลฟอร์ม if ($( ".css_data_item:checked" ).length==0){ // ถ้าไม่มีการเลือก checkbox ใดๆ เลย alert( "NO" ); return false ; } }); }); </script> |
ตัวอย่าง
โค้ดทั้งหมด
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" <head> <meta http-equiv= "Content-Type" content= "text/html; charset=utf-8" /> <title></title> </head> <body> <div style= "margin:auto;" > <form id= "form_checkbox1" name= "form_checkbox1" method= "post" action= "" > <table width= "600" border= "0" align= "center" cellpadding= "0" cellspacing= "2" > <thead> <tr> <th align= "center" bgcolor= "#CCFFCC" > </th> <th bgcolor= "#CCFFCC" >Topic</th> </tr> </thead> <tr> <td width= "50" align= "center" > <input name= "data_item1" type= "checkbox" class = "css_data_item" id= "data_item1" value= "1" /> </td> <td>Data1</td> </tr> <tr> <td width= "50" align= "center" > <input name= "data_item2" type= "checkbox" class = "css_data_item" id= "data_item2" value= "2" /> </td> <td>Data2</td> </tr> <tr> <td width= "50" align= "center" > <input name= "data_item3" type= "checkbox" class = "css_data_item" id= "data_item3" value= "3" /> </td> <td>Data3</td> </tr> <tr> <td width= "50" align= "center" > <input name= "data_item4" type= "checkbox" class = "css_data_item" id= "data_item4" value= "4" /> </td> <td>Data4</td> </tr> <tr> <td align= "center" > </td> <td><input type= "submit" name= "button" id= "button" value= "Submit" /></td> </tr> </table> </form> </div> <script type= "text/javascript" > $( function (){ $( ".css_data_item" ).click( function (){ // เมื่อคลิก checkbox ใดๆ if ($(this).prop( "checked" )==true){ // ตรวจสอบ property การ ของ var indexObj=$(this).index( ".css_data_item" ); // $( ".css_data_item" ).not( ":eq(" +indexObj+ ")" ).prop( "checked" , false ); // ยกเลิกการคลิก รายการอื่น } }); $( "#form_checkbox1" ).submit( function (){ // เมื่อมีการส่งข้อมูลฟอร์ม if ($( ".css_data_item:checked" ).length==0){ // ถ้าไม่มีการเลือก checkbox ใดๆ เลย alert( "NO" ); return false; } }); }); </script> </body> </html> |