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

1번째 줄: 1번째 줄:
==개요==
==개요==
;jQuery 폼 submit
;jQuery 폼 submit
==예시 1==
<source lang='html'>
<source lang='html'>
<form id="myForm" action="//jsonplaceholder.typicode.com/posts">
<form id="myForm" action="//jsonplaceholder.typicode.com/posts">
27번째 줄: 29번째 줄:
<source lang='text'>
<source lang='text'>
Object {userId: 1, title: "hello", body: "world", id: 101}
Object {userId: 1, title: "hello", body: "world", id: 101}
</source>
==예시 2==
<source lang='html'>
<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>
</source>
<jsfiddle height='160'>d2vdfarp</jsfiddle>
:→ Send 버튼을 누르면 콘솔창에 다음 내용이 출력됨
<source lang='text'>
Object {title: "hello", body: "world", userId: 1, id: 101}
</source>
</source>



2017년 6월 4일 (일) 17:21 판

1 개요

jQuery 폼 submit

2 예시 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

<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 }}