본문 바로가기

HTML

Form, name소스

<!-- 액션이 취해질 문서이름 -->

<form action="NewFile.jsp">

버튼!!!!!!!

<input type="submit" value="입력완료">

 

"text"

ID : <input type="text" name="id" value="test" title="여기에 id 기입">

"Password"

Password : <input type="password" name="pwd" value="">

"reset"

<input type="reset" value="초기화">	

"number"

number:<input type="number" name="num" max="5" min="1">

<!-- 달력 -->

date:<input type="date" name="date">

<!-- 색상도 -->

color:<input type="color" name="color" value="#ff0000"><!-- value=red로 초기화해놓음 -->

<!-- 가로 슬라이드바 -->

range:<input type="range" name="range" max="10" min="0">

<!-- 검색창 -->

search:<input type="search" name="search">

 

<!-- textArea -->

<textarea rows="10" cols="30">초기값 설정을 원할경우 입력</textarea>

 

<!-- 동영상 -->

<video width="400" controls="controls">
	<source src="mov_bbb.mp4" type="video/mp4">
	<!-- <source src="mov_bbb.ogg" type="video/ogg">  ogg파일도 됨-->
</video>

 

초기화

<input type="reset" value="초기화">

<file 찾기>

<input type="file" name="file">

 


 

Check Box & Radio Button 

 

 

 

 

 

"checkbox"

	<input type="checkbox" name="hobby" value="패션"> 패션 <br>
	<input type="checkbox" name="hobby" value="음약"> 음악 <br>

 

"radio" -벤츠로 미리 체크해놓음

	<!-- Radio Button 단일선택 -->
	<input type="radio" name="car" value="벤츠" checked="checked">벤츠<br>
	<input type="radio" name="car" value="아우디">아우디<br>

 

 

 

 

버튼생성

<input type="submit" value="버튼">

JSP파일에서 콘소로 출력하기

String ho[] = request.getParameterValues("hobby");
if(ho != null && ho.length > 0){
	for(int i = 0; i < ho.length; i++){
		System.out.println("hobby" + (i+1) +" : " + ho[i]);
	}
}
String car = request.getParameter("car");
System.out.println("car : " + car);

 

 

 


 

 

 

<!-- 체크박스 --><!-- ComboBox, Select -->

 

<select name="fname" multiple="multiple"><!-- 다중 선택하기 설정 -->
	<option value="사과">Apple</option>
	<option value="바나나" selected="selected">Banana</option><!-- 바나나로 미리선택 -->
</select>
<input type="submit" value="과일">

JSP

String fArr[] = request.getParameterValues("fname");
for(int i = 0; i < fArr.length; i++){
	System.out.println(fArr[i]);
}

 

 

 

'HTML' 카테고리의 다른 글

텍스트 소스  (0) 2020.07.07
Form 실습  (0) 2020.07.07
링크,이미지 소스 / iframe : 웹페이지 안의 웹페이지  (0) 2020.07.07
테이블셋팅 소스  (0) 2020.07.07
테이블, 게시판 기본  (0) 2020.07.07