728x90
HTML ํ์ผ
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>์ค๋ฌธ์กฐ์ฌ</h1>
<form action="TEST17.jsp">
์ด๋ฆ : <input type="text" name="name">
<p>[์ง๋ฌธ1]</p>
<p>์์ด๋ก ๋ํํ ์ ์์ต๋๊น?</p>
<input type="radio" name="qa" value="yes">์
<input type="radio" name="qa" value="no">์๋์ค
<input type="radio" name="qa" value="idon">๋ชจ๋ฅด๊ฒ ์ต๋๋ค
<p>[์ง๋ฌธ2]</p>
<p>์์ด ์ธ์ ๊ด์ฌ์๋ ์ธ์ด๊ฐ ์์ผ๋ฉด ์ ํ(๋ณต์์ ํ๊ฐ๋ฅ)</p>
<input type="checkbox" name="fav" value="deutsch">๋
์ผ์ด
<input type="checkbox" name="fav" value="china">์ค๊ตญ์ด
<input type="checkbox" name="fav" value="french">ํ๋์ค์ด
<p>[์ง๋ฌธ3]</p>
<p>์์ด์์
์ ๋ํ ์๊ฒฌ์ด ์๋ค๋ฉด ๊ธฐ์
ํด์ฃผ์ธ์</p>
<textarea name="text"></textarea>
<p>[์ง๋ฌธ4]</p>
<p>๋น์ ์ ์ฐ๋ น์ ์ ํํด์ฃผ์ญ์์ค</p>
<br>
<select name="OptionCode">
<option value="๋์ด๋ฅผ ์ ํํด์ฃผ์ญ์์ค">๋์ด๋ฅผ ์ ํํด์ฃผ์ญ์์ค</option>
<option value="10๋">10๋</option>
<option value="20๋">20๋</option>
<option value="30๋">30๋</option>
<option value="40๋์ด์">40๋์ด์</option>
</select>
<br><br><br>
<input type="submit" value="์ ์ถํ๊ธฐ">
</form>
</body>
</html>
JSP ํ์ผ
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
//์ด๋ฆ ํ์ธ
String name = request.getParameter("name");
System.out.println("์ด๋ฆ ="+ name);
//์์ด๋ก ๋ํํ ์ ์๋?
String qa = request.getParameter("qa");
if(qa==null){
System.out.println("์์ด๋ก ๋ํํ ์ ์์ต๋๊น = ์
๋ ฅํ ๋ฐ์ดํฐ๊ฐ ์์ต๋๋ค.");
}
else
{
System.out.println("์์ด๋ก ๋ํํ ์ ์์ต๋๊น = " + qa);
}
//๊ด์ฌ์ด ์๋ ์ธ์ด
String [] fav = request.getParameterValues("fav");
for(int i = 0; i<fav.length; i++){
System.out.println("๊ด์ฌ์ด ์๋ ์ธ์ด? = " + fav[i]);
}
//ํ ๋ง
String text = request.getParameter("text");
System.out.println("ํ ๋ง์๋ =" + text);
//๋น์ ์ ์ฐ๋ น์?
String id = request.getParameter("OptionCode");
System.out.println("๋น์ ์ ์ฐ๋ น์? = " + id);
%>
</body>
</html>
๊ฒฐ๊ณผ ->
'๐ HTML\CSS' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
target๊ณผ iframe์ ํ์ฉํ ์ด๋ฏธ์ง ํ๋ ์ถ๋ ฅ (0) | 2021.02.25 |
---|---|
BMW ํํ์ด์ง ์ฐจ๋ ์ฃผ๋ฌธ์ ๋ง๋ค์ด๋ณด๊ธฐ <๋ฏธ์> (0) | 2021.02.24 |
html์ Action๊ณผ JSP๋ฅผ ํ์ฉํด ์ ๋ ฅ๋ฐ์๊ฐ ๋๊ฒจ์ฃผ๋๋ฒ (0) | 2021.02.24 |
iframe (web ์์ web) (0) | 2021.02.24 |
List (๋ชฉ๋ก) - ul , ol ํ์ฉ๋ฒ (0) | 2021.02.24 |
๋๊ธ