반응형
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 |
Tags
- java역사
- inorder
- cudnn
- Keras
- C언어
- CES 2O21 참가
- 웹 용어
- bccard
- html
- CES 2O21 참여
- 머신러닝
- classification
- 대이터
- 결합전문기관
- web
- tensorflow
- discrete_scatter
- pycharm
- web 용어
- vscode
- web 개발
- postorder
- broscoding
- 데이터전문기관
- 재귀함수
- KNeighborsClassifier
- 자료구조
- mglearn
- web 사진
- paragraph
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