<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<!DOCTYPE html>
<html>
<%
String aaa = "test";
%>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
<script src="//code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(function() {
$('input[name="birds"]').change(function() {
alert($(this).val());
});
});
</script>
</head>
<body>
<fieldset>
<legend>birds</legend>
<%
for(int i=1; i<=3; i++) {
if(i == 1) {
%>
<input type="radio" name="birds" id="<%=i%>" value="<%=i%>" checked /> <label for="<%=i%>">birds<%=i%></label><br>
<%
} else {
%>
<input type="radio" name="birds" id="<%=i%>" value="<%=i%>" /> <label for="<%=i%>">birds<%=i%></label><br>
<%
}
}
%>
</fieldset>
</body>
</html>
이렇게 하면 사용 가능 합니다.
그리고 기초적인 게시판 만들기를 스터디 해보고 싶으시면 스프링부트 게시판 만들기를 참고해 주세요
https://astonysia-story.tistory.com/21
https://astonysia-story.tistory.com/22
'IT, 인터넷 > JSP' 카테고리의 다른 글
jsp 를 알아보자 (1) - 개념 (0) | 2021.09.28 |
---|---|
jsp로 0으로 나눈거 에러 처리후 페이지 이동해서 에러 메시지 보여주기 (0) | 2021.09.27 |
jsp list, map 사용하여 출력 하기 (0) | 2021.09.17 |
자바스크립트에서 jsp 변수 alert창으로 띄우기(jquery 사용) (0) | 2021.09.17 |
jsp에서 자바스크립트를 사용하여 경고창 띄우기 (0) | 2021.09.17 |