본문 바로가기
프로그래밍/자바

select box 에 값 채우기!!

by 카라미 2015. 4. 22.

select box 에 값 채우기!!


<body>
<% 
String[] valueList = {"a","b","c","d"};
String selectedValue = "d"; 
%>
<select name="area">
<%
for(int i =0; i < valueList.length; i++){
%>
<option value=<%=valueList[i]%> 
<%if(selectedValue.equals(valueList[i])) out.print("selected");%>> 
<%=valueList[i]%></option>
<%} %>
</select>
</body>



taglib 이용해서 처리하기!! 

<html:select property="aaa">
     <logic:iterate id="v" name="test_form" property="lecturelist">
         <bean:define id="opt" name="v" property="lecture"/>
         <html:option value="<%=opt.toString()%>"></html:option>
     </logic:iterate>
</html:select>


'프로그래밍 > 자바' 카테고리의 다른 글

아이디 자동생성기  (0) 2016.01.11
json toString  (0) 2015.10.21
간단한 달력출력!!  (0) 2015.09.11
자바 리플렉션  (0) 2015.07.29
한글처리 getByte 메소드 사용법.  (0) 2015.04.22