체크박스 다중선택 value값 가져오기
$("input[name=tblChk]:checked").each(function(){
var test = $(this).val();
console.log("체크된 값 : " + test);
});
체크박스 다중선택 value값 배열에 담기
var arTest = [];
$("input[name=tblChk]:checked").each(function(){
arTest.push($(this).val());
});
console.log("체크된 값 total : " + arTest);
var times = $("#times").val();
var timeSplit = times.split(",");
for ( var i in timeSplit ) {
$("input[type='checkbox'][value='"+timeSplit[i]+"']").prop('checked', true);
}