반응형
오늘은 요구사항으로 새 윈도우 창에 post 로 보내달라는 게 있어서 포스팅에 추가해봅니다.
Vanilla로 짜도되고 jQuery를 쓰셔도 되는데, 두가지를 모두 소개해볼게요.
Vanilla
var form = document.createElement('form');
form.setAttribute('target', '_blank');
form.setAttribute('action', '__TARGET_URL__');
form.setAttribute('method', 'post');
var input = document.createElement('input');
input.setAttribute('type', 'hidden');
input.setAttribute('value', '__VALUE__HERE__');
input.setAttribute('name', '__NAME__HERE__');
form.append(input);
document.body.appendChild(form);
form.submit();
jQuery
var form = $("<form \>");
form.attr({
"target": "_blank",
"action": "__URL__HERE__",
"method": "post"
});
form.append($("<input \>").attr({
"type": "hidden",
"value": "__VALUE__HERE__",
"name": "__NAME__HERE__"
}))
$("body").append(form);
form.submit();
반응형
'웹프로그래밍 > Javascript' 카테고리의 다른 글
[NextAuth] auth redirect 로컬 포트 변경하기 (0) | 2024.02.21 |
---|---|
kakao.maps.LatLng is not a constructor (0) | 2023.12.28 |
validate JSON (JSON 여부 검사) (0) | 2020.07.08 |
get only text by clipboard (0) | 2020.07.08 |
get Image width and height (0) | 2020.07.08 |