'체크박스'에 해당되는 글 1건

  1. 2008/01/31 초록별사랑 체크박스 토글

체크박스 토글

Javascript 2008/01/31 11:20 초록별사랑
리스트에서 체크박스를 전체선택하고 해제하는 작업을 하는 자바스크립트

함수
function toggleCheckBox(obj, target){
        if ( !obj ) return false;
        if ( !target ) return false;
        
        if ( target.length ) {
            for ( var i = 0 ; i < target.length ; i++ ){
                target[i].setAttribute("checked", obj.getAttribute("checked"));
            }
        }
        else{
            target.setAttribute("checked", obj.getAttribute("checked"));
        }
    }
사용예
<input type="checkbox" id="" name="" value="" onclick="toggleCheckBox(this, document.getElementsByName('juminnum'));" />

<input type="checkbox" name="juminnum" value="000000-00000000">

크리에이티브 커먼즈 라이센스
Creative Commons License
2008/01/31 11:20 2008/01/31 11:20
받은 트랙백이 없고, 댓글이 없습니다.

댓글+트랙백 RSS :: http://haroc.haroc.net/tc/rss/response/164