<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<c:set var="contextPath" value="${pageContext.request.contextPath}"/>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>usersuvey.jsp</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<jsp:include page="/WEB-INF/views/include/bs.jsp"></jsp:include>
<form name="myform" method="post">
<div class="container">
<p>
<br />
</p>
<h1>
<b>설문하기</b>
</h1>
<p>정확한 답변으로 응답해 주시기 바랍니다. 응답해주신 답변은 소중한 자료가 됩니다.</p>
<hr/>
<p><h2>설문제목 : ${vo.subject}</h2></p>
<hr/>
<table class="table table-hover">
<thead>
<tr>
<th>해당하는 항목에 맞는 것을 선택해주세요</th>
<th>선택</th>
</tr>
</thead>
<tbody>
<tr>
<td>귀하의 성별은?</td>
<td>
<input type="radio" name="gender" value="남" checked>남
<input type="radio" name="gender" value="여">여
</td>
</tr>
<tr>
<td>귀하의 나이는?</td>
<td>
<input type="radio" name="age" value="20" checked>20대
<input type="radio" name="age" value="30">30대
<input type="radio" name="age" value="40">40대
<input type="radio" name="age" value="50">50대
<input type="radio" name="age" value="60">60대이상
</td>
</tr>
</tbody>
</table>
<br />
<p style="text-align: center">
<!-- <button type="button" class="btn btn-secondary" id="surveyCheck">등록하기</button> -->
<!-- <button type="button" class="btn btn-secondary" id="surveyCheck" onclick="fCheck()">등록하기</button> -->
<button type="submit" class="btn btn-secondary ">설문시작하기</button>
<!-- <button type="button" class="btn btn-secondary" id="surveyCheck">등록하기</button> -->
<button type="button" class="btn btn-secondary" onclick="location.href='${contextPath}/survey/sList'">돌아가기</button>
</p>
</div>
<input type="hidden" name="subject" value="${vo.subject}"/>
<input type="hidden" name="survey_idx" value="${vo.idx}"/>
</form>
</body>
</html>

<input type="hidden" name="subject" value="${vo.subject}"/>
<input type="hidden" name="survey_idx" value="${vo.idx}"/>
성별 , 나이 값 vo에 넘겨줌
귀하의 성별은 ?
귀하의 나이는?

'Programing' 카테고리의 다른 글
| [git] 원격 저장소 (repository) push (0) | 2023.04.12 |
|---|---|
| survey/sInput (0) | 2020.07.10 |
| survey/sList (0) | 2020.07.10 |
| 인터셉터 사용법 (0) | 2020.07.07 |
| 게시판 작업 (0) | 2020.06.29 |