รวมทิป js, jquery เอาไว้กำหนดคุณสมบัติของหน้าฟอร์ม หน้าเว็บ
รวมทิป js, jquery เอาไว้กำหนดคุณสมบัติของหน้าฟอร์ม หน้าเว็บ
กำหนดให้เลือก checkbox ตามจำนวน ตย. 2 อัน
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 |
<html> <head> <meta charset="utf-8"> <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script> </head> <body> <script type="text/javascript"> $(document).ready(function(){ $("form").submit(function(){ if ($('input:checkbox').filter(':checked').length < 2){ alert("เลือกอย่างน้อย 2 รายการ !"); return false; } }); }); /* กำหนดว่าให้เลือกกี่อัน length < 2 */ </script> <form method="post" action=""> <input type="checkbox" name="a1" value="1" />a1<br/> <input type="checkbox" name="a2" value="2" />a2<br/> <input type="checkbox" name="a3" value="3" />a3<br/><br/> <input type="submit" name="submit" value="Submit" /> </form> </body> </html> <!-- https://www.allphptricks.com/submit-form-atleast-one-checkbox-checked/ --> |