jquery POST 방식으로 다른 페이지로 이동하는 방법
2018. 4. 13. 14:49ㆍJavascript/Javascript+jQuery
반응형
<a id="btnList" href="#">리스트보기</a>
$(document).ready(function(){
$("#btnList").click(function(){
var form = document.createElement('form');
var objs;
objs = document.createElement('input');
objs.setAttribute('type', 'hidden');
objs.setAttribute('name', 'name');
objs.setAttribute('value', value);
form.appendChild(objs);
form.setAttribute('method', 'post');
form.setAttribute('action', "/action.php");
document.body.appendChild(form);
form.submit();
});
});
출처: http://waqoon.tistory.com/185 [와쿤의 IT 이야기]
출처: http://waqoon.tistory.com/185 [와쿤의 IT 이야기]
반응형
'Javascript > Javascript+jQuery' 카테고리의 다른 글
[jQuery] 확인 창(confirm), 페이지 이동(location.replace) (0) | 2018.04.13 |
---|---|
POST 전송 (jQuery), POST 이동, POST 새창 (0) | 2018.04.13 |
[jQuery] input 박스에 maxlength 만큼 입력했을 때 자동으로 다음 박스로 이동하기 (0) | 2018.04.12 |
[ Firebase ] Database JavaScript 연동하기 (6) | 2018.04.04 |
[ Firebase ] 웹에서 클라우드 메시징 요청보내기 (0) | 2018.04.04 |