체크 버튼 하나로 모든 체크화 하기
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 |
<!DOCTYPE html> <html lang="ko"> <meta charset="utf-8"> <body> <style> li, ol, ul { list-style: none; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> function checkAll() { //alert("ok"); if($("#AgreeAll").prop("checked")) { $("input[type=checkbox]").prop("checked",true); }else { $("input[type=checkbox]").prop("checked",false); } } </script> <p>모든 동의</p> <div> <ul class="rsv_cont"> <li> <input type="checkbox" id="Agree1" name="Agree1"><span>일반규정</span> </li> <li> <input type="checkbox" id="Agree2" name="Agree2"><span>요금규정</span> </li> <li> <input type="checkbox" id="Agree3" name="Agree3"><span>개인정보취급방침</span> </li> <li> <input type="checkbox" id="AgreeAll" name="AgreeAll" onClick="checkAll()"><span>위 예약규정의 내용을 모두 확인하고 이에 동의합니다.</span> </li> </ul> </div> </body> </html> |