Merge branch 'advc' of http://yongjoon.cho@vcs.iten.co.kr:9999/hylee/offedu into advc
This commit is contained in:
commit
c128750d9e
@ -321,14 +321,39 @@ $(document).ready(function(){
|
|||||||
<th scope=“row”>생년월일 8자리 (ex.1988.01.01)</th>
|
<th scope=“row”>생년월일 8자리 (ex.1988.01.01)</th>
|
||||||
<td>
|
<td>
|
||||||
<div class="calendar_wrap">
|
<div class="calendar_wrap">
|
||||||
<duet-date-picker identifier="date" id="dBirth" class="dBirth" min="1940-01-01"></duet-date-picker>
|
<select name="" id="year" class="selType1">
|
||||||
|
<option value="">1997</option>
|
||||||
|
</select> 년  
|
||||||
|
<select name="" id="month" class="selType1">
|
||||||
|
<option value="">1</option>
|
||||||
|
<option value="">2</option>
|
||||||
|
<option value="">3</option>
|
||||||
|
<option value="">4</option>
|
||||||
|
<option value="">5</option>
|
||||||
|
<option value="">6</option>
|
||||||
|
<option value="">7</option>
|
||||||
|
<option value="">8</option>
|
||||||
|
<option value="">9</option>
|
||||||
|
<option value="">10</option>
|
||||||
|
<option value="">11</option>
|
||||||
|
<option value="">12</option>
|
||||||
|
</select> 월  
|
||||||
|
<select name="" id="day" class="selType1">
|
||||||
|
<option value="">1</option>
|
||||||
|
</select> 일  
|
||||||
|
|
||||||
|
<!-- <duet-date-picker identifier="date" id="dBirth" class="dBirth" min="1940-01-01"></duet-date-picker>
|
||||||
<script>
|
<script>
|
||||||
$(function(){
|
$(function(){
|
||||||
|
setTimeout(function(){
|
||||||
$('.calendar_wrap').each(function(){
|
$('.calendar_wrap').each(function(){
|
||||||
//$(this).find('.duet-date__input').attr('onkeydown','this.value=dateSettingHere(this.value);');
|
//$(this).find('.duet-date__input').attr('onkeydown','this.value=dateSettingHere(this.value);');
|
||||||
$(this).find('.duet-date__input').attr('onblur','this.value=dateSettingHere(this.value);');
|
|
||||||
|
$(this).find('.duet-date__input').attr('onblur','this.value=dateSettingHere(this.value);');
|
||||||
|
$(this).find('.duet-date__input').attr('onkeyup','this.value=dateSettingHere(this.value);');
|
||||||
|
|
||||||
});
|
});
|
||||||
|
},1000)
|
||||||
})
|
})
|
||||||
|
|
||||||
var dBirth = document.querySelector("#dBirth");
|
var dBirth = document.querySelector("#dBirth");
|
||||||
@ -390,6 +415,7 @@ $(document).ready(function(){
|
|||||||
}
|
}
|
||||||
dBirth.addEventListener("duetFocus", function (e) {
|
dBirth.addEventListener("duetFocus", function (e) {
|
||||||
calendarSetting();
|
calendarSetting();
|
||||||
|
dateSettingHere();
|
||||||
});
|
});
|
||||||
|
|
||||||
function dateSettingHere(objValue) {
|
function dateSettingHere(objValue) {
|
||||||
@ -424,7 +450,7 @@ $(document).ready(function(){
|
|||||||
|
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
</script>
|
</script> -->
|
||||||
</div>
|
</div>
|
||||||
<%-- <script src="${pageContext.request.contextPath}/visitEdu/usr/publish/script/duetdatepicker2.js"></script> --%>
|
<%-- <script src="${pageContext.request.contextPath}/visitEdu/usr/publish/script/duetdatepicker2.js"></script> --%>
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user