◆ 무한한 가능성/& JAVA Script

[Node.js] 체크 박스 모두 체크/해제 (checkbox select all or not)

치로로 2017. 4. 17. 11:20





// 체크 박스 모두 체크/해제


$("#checkAll").click(function() {

$('input[id=box]:checkbox').not(this).prop('checked', this.checked);

});