jquery 작업 체크박스 전체 선택

960 단어
jquery 작업 체크박스 전체 선택
  • jquery 조작 checkbox
  • function checkAll()   
  • {   
  •    $('input[type="checkbox"][name="item"]').attr("checked", true);   
  •                        
  •    // $('[name="item"]:checkbox').attr("checked", true);   
  • }  
  • function checkAll()
    {
       $('input[type="checkbox"][name="item"]').attr("checked", true);
    					
       // $('[name="item"]:checkbox').attr("checked", true);
    }

    Js 코드
  • function checkFootball()   
  • {   
  •    $("[name='item']:checkbox").each(function() {   
  •        if (this.value == 'football')   
  •        {   
  •           this.checked = true;   
  •        }   
  •    })      
  • }  
  • 좋은 웹페이지 즐겨찾기