2013년 11월 11일 월요일

jQuery를 입력 양식 이벤트 change change : 상태가 변경 될 때 이벤트 발생

jQuery를 입력 양식 이벤트 change

change : 상태가 변경 될 때 이벤트 발생

<html>
<head>
<meta charset="utf-8"/>
<script src="/ajaxjquery/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
 $(document).ready(function() {
  //ALL 체크박스가 변동되면,
  $("#mychk").change(function() {
   if (this.checked) {
    //check_item아래 전체 체크박스를 true
    $("#check_item").children().attr("checked",true);   
   } else {
    $("#check_item").children().attr("checked",false);
   }
  });
 });
</script>
<body>   
 <form id="myform">
  <input type="checkbox" id="mychk"/>
  <label>ALL</label><!-- 여기 체크하면 아래전무 체크되거나 해제됨 -->
  <div id="check_item">
   <input type="checkbox"/>
   <label>A</label>
   <input type="checkbox"/>
   <label>B</label>
   <input type="checkbox"/>
   <label>C</label>
  </div>
 </form>
</body>
</html>

 

 


댓글 없음:

댓글 쓰기