본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

HTML·CSS

데이터를 전송하는 form태그

데이터를 전송하는 form태그

action  URL, 어디로 전송할지
method 노출, 값을 보여줄것인지(get,post)
enctype 인코딩, 어떻게 전송할지(application/x-www-form-urlencoded, multipart/form-data)

<form action="index.jsp" method="get" enctype="application/x-www-form-urlencoded">
  <fieldset>
    <legend>개인 정보</legend>
    <label for="name">이름:</label>
    <input type="text" id="name" name="name"><br>
  </fieldset>
</form>