"JQuery 폼 submit"의 두 판 사이의 차이

잔글 (210.126.6.125(토론)의 편집을 115.93.70.213의 마지막 판으로 되돌림)
태그: 일괄 되돌리기
잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
5번째 줄: 5번째 줄:


==Non-AJAX 방식==
==Non-AJAX 방식==
<source lang='html'>
<syntaxhighlight lang='html'>
<form id="form-destroy" method="post" action="delete.php">
<form id="form-destroy" method="post" action="delete.php">
<input type="hidden" name="postid" value="3">
<input type="hidden" name="postid" value="3">
19번째 줄: 19번째 줄:
});
});
</script>
</script>
</source>
</syntaxhighlight>


==AJAX 방식==
==AJAX 방식==
===예시 1===
===예시 1===
<source lang='html'>
<syntaxhighlight lang='html'>
<form id="myForm" action="//jsonplaceholder.typicode.com/posts">
<form id="myForm" action="//jsonplaceholder.typicode.com/posts">
   <input type="hidden" name="userId" value="1">
   <input type="hidden" name="userId" value="1">
44번째 줄: 44번째 줄:
});
});
</script>
</script>
</source>
</syntaxhighlight>
<jsfiddle height='160'>nm8o3e3d</jsfiddle>
<jsfiddle height='160'>nm8o3e3d</jsfiddle>
:→ Send 버튼을 누르면 콘솔창에 다음 내용이 출력됨
:→ Send 버튼을 누르면 콘솔창에 다음 내용이 출력됨
<source lang='text'>
<syntaxhighlight lang='text'>
Object {userId: 1, title: "hello", body: "world", id: 101}
Object {userId: 1, title: "hello", body: "world", id: 101}
</source>
</syntaxhighlight>


===예시 2===
===예시 2===
* 예시 1의 변형판
* 예시 1의 변형판
* HTML로 작성하는 부분을 최소화하고 jQuery에서 처리하도록 함
* HTML로 작성하는 부분을 최소화하고 jQuery에서 처리하도록 함
<source lang='html'>
<syntaxhighlight lang='html'>
<form id="myForm">
<form id="myForm">
   <input type="text" name="title" value="hello"><br>
   <input type="text" name="title" value="hello"><br>
75번째 줄: 75번째 줄:
});
});
</script>
</script>
</source>
</syntaxhighlight>
<jsfiddle height='160'>d2vdfarp</jsfiddle>
<jsfiddle height='160'>d2vdfarp</jsfiddle>
:→ Send 버튼을 누르면 콘솔창에 다음 내용이 출력됨
:→ Send 버튼을 누르면 콘솔창에 다음 내용이 출력됨
<source lang='text'>
<syntaxhighlight lang='text'>
Object {title: "hello", body: "world", userId: 1, id: 101}
Object {title: "hello", body: "world", userId: 1, id: 101}
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:53 판

1 개요

jQuery form submit
jQuery 폼 submit
jQuery 폼 제출

2 Non-AJAX 방식

<form id="form-destroy" method="post" action="delete.php">
<input type="hidden" name="postid" value="3">
</form>

<button id="btn-destroy">삭제하기</button>

<script>
$("#btn-destroy").click(function(e) {
	e.preventDefault();
	if(!confirm('정말로 삭제하시겠습니까?')) return;
	$('#form-destroy')[0].submit();
});
</script>

3 AJAX 방식

3.1 예시 1

<form id="myForm" action="//jsonplaceholder.typicode.com/posts">
  <input type="hidden" name="userId" value="1">
  <input type="text" name="title" value="hello"><br>
  <textarea name="body">world</textarea><br>
  <button>Send</button>
</form>

<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$( "#myForm" ).submit(function( event ) {
  event.preventDefault();
  var url = $(this).attr( "action" );
  var data = $(this).serialize();
  
  $.post( url, data )
  .done(function( data ) {
    console.log('--->', data);
  });
});
</script>
→ Send 버튼을 누르면 콘솔창에 다음 내용이 출력됨
Object {userId: 1, title: "hello", body: "world", id: 101}

3.2 예시 2

  • 예시 1의 변형판
  • HTML로 작성하는 부분을 최소화하고 jQuery에서 처리하도록 함
<form id="myForm">
  <input type="text" name="title" value="hello"><br>
  <textarea name="body">world</textarea><br>
  <button>Send</button>
</form>

<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$( "#myForm" ).submit(function( event ) {
  event.preventDefault();
  
  var data = $(this).serializeArray();
  data = data.concat([{name:"userId",value:1}]);
  
  $.post( "//jsonplaceholder.typicode.com/posts", data )
  .done(function( data ) {
    console.log( data );
  });
});
</script>
→ Send 버튼을 누르면 콘솔창에 다음 내용이 출력됨
Object {title: "hello", body: "world", userId: 1, id: 101}

4 같이 보기

5 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}