โค้ดตัวอย่างทั้งหมด
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 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > <head> <meta http-equiv= "Content-Type" content= "text/html; charset=utf-8" /> <title>jquery v 1.6.1</title> </head> <body> <form id= "form1" name= "form1" method= "post" action= "" > เลือกฃ่องทีวีที่ชื่นชอบ<br /> <input name= "ch1" type= "checkbox" id= "ch1" value= "ch 1" class = "chkbox" /> ช่อง 1<br /> <input name= "ch2" type= "checkbox" id= "ch2" value= "ch 2" class = "chkbox" /> ช่อง 2<br /> <input name= "ch3" type= "checkbox" id= "ch3" value= "ch 3" class = "chkbox" /> ช่อง 3<br /> <input name= "ch4" type= "checkbox" id= "ch4" value= "ch 4" class = "chkbox" /> ช่อง 4<br /> <input name= "ch5" type= "checkbox" id= "ch5" value= "ch 5" class = "chkbox" /> ช่อง 5<br /> </form> <script type= "text/javascript" > $( function (){ var num_check=0; var limit_check=3; // จำนวน checkbox ที่จำกัด var name_selector= ":checkbox.chkbox" ; // jquery selector $(name_selector).each( function (){ $(this).click( function (){ if ($(this).is( ":checked" )==true){ num_check++; } else { if (num_check!=0){ num_check--; } } if (num_check<limit_check){ $(name_selector+ ":not(:checked)" ).removeAttr( "disabled" ); } else { $(name_selector+ ":not(:checked)" ).attr( "disabled" , "true" ); } }); }); }); </script> </body> </html> |
ตัวอย่างผลผลลัพธ์