체크박스를 조작하여 모두 선택하고 선택 반전
//모두 선택
function checkAll() {
$('input[name="TheID"]').attr("checked", "checked")
}
/ /역선택
function uncheckAll( ) {
$('input[name="TheID"]').each(function() {
this.checked = !this.checked;
} )
}
/ /선택한 항목 가져오기
function getCheck(){
var check = $('input[name="TheID"]:checkbox').map(function() {
return $(this).val();
}).get().join(',')
return check;