2024-07-23 10:07 기소유예 달력을 selectt box 로 변경 하였음

This commit is contained in:
myname 2024-07-23 10:08:09 +09:00
parent a1e57f7c91
commit 7b6eb2bf11

View File

@ -323,8 +323,18 @@ $(document).ready(function(){
<div class="calendar_wrap">
<input type="hidden" value="" id="dBirth"/>
<select name="" id="year" class="selType1">
<option value="1997">1997</option>
<option value="1973">1973</option>
<c:forEach var="index" begin="1923" end="2024">
<c:choose>
<c:when test="${index eq 2000}">
<option value="${index}" selected>${index}</option>
</c:when>
<c:otherwise>
<option value="${index}">${index}</option>
</c:otherwise>
</c:choose>
</c:forEach>
</select>&ensp;년 &ensp;
<select name="" id="month" class="selType1">
<option value="01">1</option>