728x90 php7 ajax 사용하기 선택된 체크박스를 서버로 보내기위해 ajax를 사용! var arr_no = new Array(); $("input[name='check_product[]']:checked").each(function () { arr_no.push($(this).val()); }); 위와 같이 배열을 선언하고 체크박스의 벨류를 배열에 넣었다. $.ajax({ url: '/admin/test/action/test.php', data: { arr: arr_no }, method: 'post', success : function(result){ var result2 = JSON.parse(result); alert(result2.msg); location.reload(); }, error:function(e){ console.. 2021. 9. 13. 이전 1 2 다음