문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
wiki:html:html_note:html_forms [2021/05/11 11:31] emblim98 |
wiki:html:html_note:html_forms [2023/01/13 18:44] (현재) |
||
---|---|---|---|
줄 53: | 줄 53: | ||
====The < | ====The < | ||
- | %%HTML < | + | %%HTML%% '' |
\\ | \\ | ||
- | %%< | + | '' |
+ | \\ | ||
+ | | Type | Description | ||
+ | ^ <input type=" | ||
+ | | <input type=" | ||
+ | ^ <input type=" | ||
+ | | <input type=" | ||
+ | ^ <input type=" | ||
+ | \\ | ||
+ | =====Text Fields===== | ||
+ | '' | ||
+ | |||
+ | ====Example==== | ||
+ | 텍스트를 위한 입력 필드를 가진 폼:\\ | ||
+ | <code html> | ||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | <label for=" | ||
+ | <input type=" | ||
+ | <label for=" | ||
+ | <input type=" | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | |||
+ | =====The < | ||
+ | 위의 예제에서 '' | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | 사용자가 입력 요소에 집중할 때 스크린 리더기가 레이블을 소리내어 읽어주기 때문에, | ||
+ | '' | ||
+ | \\ | ||
+ | '' | ||
+ | 어려움이 있는 사용자에게 도움이 됩니다. 이는 사용자가 '' | ||
+ | \\ | ||
+ | '' | ||
+ | |||
+ | =====Radio Buttons===== | ||
+ | '' | ||
+ | \\ | ||
+ | 라디오 버튼을 사용하면 제한된 수의 선택 항목 중 하나를 선택할 수 있습니다.\\ | ||
+ | |||
+ | ====Example==== | ||
+ | 라디오 버튼이 있는 폼\\ | ||
+ | <code html> | ||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | <input type=" | ||
+ | <label for=" | ||
+ | |||
+ | <input type=" | ||
+ | <label for=" | ||
+ | |||
+ | <input type=" | ||
+ | <label for=" | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | |||
+ | =====Checkboxes===== | ||
+ | '' | ||
+ | \\ | ||
+ | 체크 박스를 사용하면 제한된 수의 선택 항목 중 0 개 이상의 옵션을 선택할 수 있습니다.\\ | ||
+ | |||
+ | ====Example==== | ||
+ | 체크박스가 있는 폼\\ | ||
+ | <code html> | ||
+ | < | ||
+ | |||
+ | < | ||
+ | < | ||
+ | |||
+ | <form action="/ | ||
+ | <input type=" | ||
+ | <label for=" | ||
+ | |||
+ | <input type=" | ||
+ | <label for=" | ||
+ | |||
+ | <input type=" | ||
+ | <label for=" | ||
+ | |||
+ | <input type=" | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | \\ | ||
+ | =====The Submit Button===== | ||
+ | '' | ||
+ | \\ | ||
+ | 폼-핸들러는 일반적으로 입력 데이터를 처리하기 위한 스크립트가 있는 서버의 파일입니다.\\ | ||
+ | \\ | ||
+ | 폼-핸들러는 폼의 '' | ||
+ | |||
+ | ====Example==== | ||
+ | <code html> | ||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | <form action="/ | ||
+ | <label for=" | ||
+ | <input type=" | ||
+ | |||
+ | <label for=" | ||
+ | <input type=" | ||
+ | |||
+ | <input type=" | ||
+ | |||
+ | <p> | ||
+ | If you click the " | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | \\ | ||
+ | =====The Name Attribute for < | ||
+ | 각 입력 필드에는 제출할 '' | ||
+ | \\ | ||
+ | '' | ||
+ | |||
+ | ====Example==== | ||
+ | 다음 예제는 "First name" 입력 필드의 값을 제출하지 않습니다.\\ | ||
+ | <code html> | ||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | <form action="/ | ||
+ | <label for=" | ||
+ | <input type=" | ||
+ | |||
+ | <input type=" | ||
+ | |||
+ | <p> | ||
+ | If you click the " | ||
+ | </ | ||
+ | |||
+ | <p> | ||
+ | Notice that the value of the "First name" field will bot be submitted, because the input element does not have a name attribute. | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
- | | ||
- | 여기 예시들이 있습니다 : | ||