폼태그
실행 소스 |
<?xml version="1.0" encoding="EUC-KR" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=EUC-KR" /> <title>폼태그</title> </head> <body> <!-- form의 action : submit 이벤트 발생시 가게 될 주소 --> <form action="" method="post"> <label for="userid">유저아이디</label> <input type="text" name="userid" id="userid" /><br /> <label for="pass">비밀번호</label> <input type="password" name="pass" id="pass" /><br /> <label for="job">직업</label> <select name="job" id="job"> <option>개발자</option> <option>프로그래머</option> <option>자영업자</option> </select><br /> <label for="gender">성별</label> <input type="radio" name="gender" value="m" /> 남 <input type="radio" name="gender" value="f" /> 여<br /> <label for="hobby">취미</label> <input type="checkbox" name="hobby" value="reading" /> 독서 <input type="checkbox" name="hobby" value="drama" /> 드라마보기 <input type="checkbox" name="hobby" value="soccer" /> 축구<br /> <input type="checkbox" name="hobby" value="movie" /> 영화보기 <input type="checkbox" name="hobby" value="basket" /> 드라마보기 <input type="checkbox" name="hobby" value="game" /> 게임<br /> <input type="reset" value="리셋" /> <input type="submit" value="완료" />
</form> </body> </html> |
실행 결과 |
get 방식으로 실행했을때
post 방식으로 실행했을때
'Dev. 웹 > HTML.JSP' 카테고리의 다른 글
JSP( Java Server Pages ) 시작하기 - 기초 (0) | 2012.09.19 |
---|---|
[HTML 예제] a 태그 (anchor tag) - 책갈피 기능 (0) | 2012.09.12 |
HTML 참고자료 (태그 리스트, 속성표, 이벤트, 색상표, 문자셋, 특수기호, ASCII, URL Encode 등) (0) | 2012.09.09 |
HTML 기초 간단 정리 Quick List (0) | 2012.09.09 |
HTML 기본 태그 설명 및 예제 (2) | 2012.09.09 |