(즐거웅코드) 제이쿼리 form문 동적 생성 및 submit 하기
[즐거'웅'코드] 목차 예제 소스 구현 예시 예제 소스 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 form문 동적 생성 및 submit 처리 function test() { var new_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($('', {type: 'hidden', name: 'data_1', value: 'value_1'})); new_form.append($('', {type: 'h..
2021. 6. 9. 23:28