반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- KNeighborsClassifier
- paragraph
- 데이터전문기관
- 결합전문기관
- CES 2O21 참가
- classification
- mglearn
- java역사
- web 용어
- html
- pycharm
- 웹 용어
- 머신러닝
- C언어
- 자료구조
- vscode
- web 개발
- 대이터
- CES 2O21 참여
- inorder
- postorder
- tensorflow
- discrete_scatter
- 재귀함수
- cudnn
- web 사진
- web
- bccard
- broscoding
- Keras
Archives
- Today
- Total
bro's coding
html.form 본문
반응형
html form은 클라이언트의 요청을 서버에게 전달하기 위해 사용하는 html tag이다. 요청을 전달하는 이벤트 처리하는 버튼은 submit이다.
<!-- action : 실해할 url method : 전달 방법-->
<!-- action에 명시할 서블릿 url은 web-inf/web.xml의 url-pattern에 기록되어 있음 -->
<!-- web.xml : DD(Deployment Descriptor) 배포 기술서 -->
<form action="hello" method="get">
<input type=submit " value="get방식 요청">
<!-- HelloServlet의 doGet()메서드 실행 -->
</form>
<hr>
<form action="hello" method="post">
<input type=submit " value="post방식 요청">
<!-- HelloServlet의 doGet()메서드 실행 -->
</form>
반응형
'[IT] > html css js' 카테고리의 다른 글
html/include (0) | 2021.04.22 |
---|---|
HTML.input.radio (0) | 2021.04.02 |
Http Request Method(요청 방식) (0) | 2021.04.02 |
javascript.ECMAScript (0) | 2021.03.31 |
HTML.hello HTML~ (0) | 2021.03.30 |
레이아웃 (0) | 2019.07.04 |
src사진 올리기 (0) | 2019.07.03 |
link (0) | 2019.07.03 |
Comments