JQuery
체크박스 팁
깜장하마
2014. 3. 24. 16:07
$('.typeCheck').click(function(){
var items_str = $("input[name='type[]']:checkbox:checked").map(function () {return this.value;}).get();
$('#typeString').val(items_str);
});
/*
전체선택, 해지
*/
$("#check_all").click(function() {
if($(this).attr("checked")){
$("input[name='idxStr[]']").attr("checked", true);
}
else{
$("input[name='idxStr[]']").attr("checked", false);
}
});