forked from AcaMate/AcaMate_Web
1. 주소 (카카오 주소 검색) 팝업 연동 및 데이터 받아오기 2. 생일 Date Picker 띄우고 데이터 받아오기 3. 전화번호 양식 만들기 4. TopNav 의 버튼들 색상 변경
8 lines
270 B
JavaScript
8 lines
270 B
JavaScript
window.openDatePicker = function (element) {
|
|
if (element) {
|
|
const wasReadOnly = element.readOnly;
|
|
if (wasReadOnly) element.readOnly = false;
|
|
element.showPicker();
|
|
if (wasReadOnly) setTimeout(() => element.readOnly = true, 0);
|
|
}
|
|
}; |