I'm

Developer, Designer, Photographer

GET IN TOUCH

  • Buk-gu, Busan, Republic of Korea
  • ungdoli0916@naver.com
  • Kakao ID : Ungdoli
Your message has been sent. Thank you!
(즐거웅코드) 제이쿼리 form문 동적 생성 및 submit 하기

· 즐거'웅' 코드 (Source)/HTML & CSS & JAVASCRIPT
2021. 6. 9. 23:28

반응형

[즐거'웅'코드] 목차

  1. 예제 소스
  2. 구현 예시
예제 소스
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
 
<button onclick="test()">form문 동적 생성 및 submit 처리</button>
 
<script>
    function test() {
        var new_form = $('<form></form>');
 
        new_form.attr("name""test_form");
        new_form.attr("method""post");
        new_form.attr("action""/test.php");
        new_form.attr("target""_blank");
 
        new_form.append($('<input/>', {type: 'hidden'name'data_1', value: 'value_1'}));
        new_form.append($('<input/>', {type: 'hidden'name'data_2', value: 'value_2'}));
 
        new_form.appendTo('body');
 
        new_form.submit();
    }
</script>
구현 예시
반응형