새소식

인기 검색어

Js

checkbox 값 controller로 넘기기

  • -
<script>
    function fnGetdata(){
        var obj = $("[name=SEQ_CHK]");
        var chkArray = new Array(); // 배열 선언

        $('input:checkbox[name=SEQ_CHK]:checked').each(function() { // 체크된 체크박스의 value 값을 가지고 온다.
            chkArray.push(this.value);
        });
        $('#hiddenValue').val(chkArray);

        alert($('#hiddenValue').val()); // 아래 체크박스가 모두 체크되어 있다면 1,2,3,4 가 출력 된다.   
    }

</script>
<body>
    <tr>
        <td>
            <input type="checkbox" name="SEQ_CHK" class="SEQ_CHK" value="1"/>
            <input type="checkbox" name="SEQ_CHK" class="SEQ_CHK" value="2"/>
            <input type="checkbox" name="SEQ_CHK" class="SEQ_CHK" value="3"/>
            <input type="checkbox" name="SEQ_CHK" class="SEQ_CHK" value="4"/>
			
            <input type="hidden" name="hiddenValue" class="hiddenValue" value=""/>
        </td>
        <td>
            <input type="button" name="btn" class="btn" onclick="fnGetdata();"/>
        </td>
    </tr>
</body>

'Js' 카테고리의 다른 글

키보드 이벤트  (0) 2022.11.03
Typeof  (0) 2022.10.27
$(document).ready / $(document).on  (0) 2022.08.29
DOM  (0) 2022.08.26
CONST / LET / VAR  (0) 2022.08.26
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.