본문 바로가기

HTML

HTML ) get방식 / post방식

a.html에서 입력받은 값을 b.html로 넘기는 방법은 get과 post 방법 뿐이다.

 

 

get방식은 url에 데이터를 넣어 넘기고 post방식은 body에다가 데이터를 넣어 넘긴다.

action에는 넘길 페이지를 입력하며 input에 name값이 있어야 넘길 수 있다.

 

<form action="b.html" method="get">
  First name:
 
  <input type="text" name="firstname">
 
  Last name:
 
  <input type="text" name="lastname">
  <button type="submit">값 전송</button>
</form>

 

<form action="b.html" post="post">
  First name:
 
  <input type="text" name="firstname">	//네임이 들어가있어야 넘길수있다.
 
  Last name:
 
  <input type="text" name="lastname">
  <button type="submit">값 전송</button>
</form>
반응형