<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery Get Values of Selected Checboxes</title> <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> <script> $(document).ready(function() { $("button").click(function(){ var favorite = []; $.each($("input[name='sport']:checked"), function(){ favorite.push($(this).val()); }); alert("My favourite sports are: " + favorite.join(", ")); }); }); </script> </head> <body> <form> <h3>Select your favorite sports:</h3> <label><input type="checkbox" value="football" name="sport"> Football</label> <label><input type="checkbox" value="baseball" name="sport"> Baseball</label> <label><input type="checkbox" value="cricket" name="sport"> Cricket</label> <label><input type="checkbox" value="boxing" name="sport"> Boxing</label> <label><input type="checkbox" value="racing" name="sport"> Racing</label> <label><input type="checkbox" value="swimming" name="sport"> Swimming</label> <br> <button type="button">Get Values</button> </form> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง