ajax 질문입니다.
본문
ajax 페이지안에서 form을 전송해야하는데..
프론트단
$.ajax ({
url : "./test_proc.php",
type : "post",
data : $(form).serialize(),
success : function (result) {
alert('test');
}
})
--test_proc.php
$test = $_POST['test'];
<form name="testform" method="post" action="test.asp">
<input type="hidden" name="test" value="<?php echo $test?>">
</form>
<script>
document.testform.submit();
</script>
-------------------------
여기서 또보내야하는데 이런식으로 하는게아닌가요?
폼전송이 안되네요..
답변을 작성하시기 전에 로그인 해주세요.