본문 바로가기
HTML/radio,select 미리 값 체크

radio 버튼, select 미리 체크 되어 있는 화면

by 정윤재 2009. 3. 2.

//radio 버튼 미리 체크
<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
<form name="form">
 <input type="radio" name="tu_use" value="111" checked>1111
 <input type="radio" name="tu_use" value="222">2222
</form>
</body>
</html>

//간단하게 저렇게 checked 만 하면 되는걸 스펠링을 몰라서 한참
//헤멜때가 여러번이다.^^

<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
<form name="form">
 <select name="111">
  <option value=111>1111</option>
  <option value=111 selected>2222</option>
 </select>  
</form>
</body>
</html>

//이것도 간단하다. selected 로 끝이다.




댓글