if(test_date.length < 14) {
const hourCheck = ('00' + nowDate.getHours()).slice(-2);
const minuteCheck = ('00' + nowDate.getMinutes()).slice(-2);
const secondCheck = ('00' + nowDate.getSeconds()).slice(-2);
test_date = test_date.replaceAll('. ','')+hourCheck+minuteCheck+secondCheck;
}
$("#test_date").val(test_date);
'개발 > JavaScript' 카테고리의 다른 글
JavaScript | UnhandledPromiseRejectionWarning: Error (0) | 2020.04.22 |
---|---|
JavaScript | SyntaxError: await is only valid in async function (0) | 2020.04.21 |
JavaScript | 추천사이트 | Babel 문법변환 (0) | 2020.02.03 |
javascript | 숫자 ,콤마(comma) 추가 정규식 (0) | 2019.12.04 |
VSC | JavaScript | 결과값 바로 보기 (0) | 2019.10.01 |