사용자 도구

사이트 도구


wiki:html:html_note:html_forms

문서의 이전 판입니다!


HTML Forms - HTML Forms

  • description : HTML Forms - HTML Forms
  • author : 오션
  • email : shlim@repia.com
  • lastupdate : 2021-05-11


The Source of this article

HTML Forms

HTML form은 사용자의 입력정보를 수집하기 위해 사용합니다.
사용자 입력 정보는 대부분 처리를 위해 서버로 전송됩니다.

Example

<!DOCTYPE html>
<html>
<body>
 
  <h2>HTML Forms</h2>
 
  <form action="/action_page.php">
    <label for="fname">First name</label><br>
    <input type="text" id="fname" name="fname" value="John"><br>
    <label for="lname">Last name</label><br>
    <input type="text" id="lname" name="lname" value="Doe"><br><br>
    <input type="submit" value="Submit">
  </form>
 
  <p>
    If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".
  </p>
 
</body>
</html>


The <form> Element

HTML ''<form>'' 요소는 사용자 입력을 위한 HTML form을 만들기 위해 사용합니다.

<form>
.
form elements
.
</form>


<form> 요소는 텍스트 필드, 체크 박스, 라디오 버튼, 제출 버튼 등과 같은
다양한 유형의 입력 요소에 대한 컨테이너입니다.

The <input> Element

/volume1/web/dokuwiki/data/attic/wiki/html/html_note/html_forms.1620698875.txt.gz · 마지막으로 수정됨: 2022/03/10 19:52 (바깥 편집)