//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 로 끝이다.
<%@ 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 로 끝이다.
댓글