728x90
반응형
생년월일 옵션(for문)
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
31
32
33
|
<select name="year">
<%
for(int i=2022;i>=1930;i--){ //2022~1930년까지
%>
<option value="<%= i %>" <%if(i == sb.getYear()){ %> selected <% } %> ><%= i %></option>
<%
}//for
%>
</select> 년
<select name="month">
<%
for(int i = 1 ; i<=12 ; i++){
%>
<option value="<%=i %>" <%if(i==sb.getMonth()){%> selected <%}%>><%=i %></option>
<%
}
%>
</select> 월
<select name="day">
<%
for(int i=1;i<=31;i++){
%>
<option value="<%=i %>" <%if(i==sb.getDay()){%>selected<%}%>><%=i %></option>
<%
}
%>
</select> 일
|
cs |
728x90
반응형
'IT관련 > JSP' 카테고리의 다른 글
[JSP] 웹 이미지 파일 업로드 작업 (0) | 2022.03.31 |
---|---|
[JSP] Java 배열 반복문(Core 라이브러리 활용 - forEach) (0) | 2022.03.31 |
[JSP] 파라미터(Parameter) 값 읽어오는 방법 (0) | 2022.03.24 |
[JSTL] Core 라이브러리(1) - out / set / remove (0) | 2022.03.14 |
[JSP] EL 표기법(Expression Language - 표현 언어) (0) | 2022.03.10 |
댓글