Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- css not
- 보이스오버
- 숫자 증가
- Replace
- mac 전체화면 닫기
- mac 바탕화면 보기
- checkbox readonly
- 특정요소제외
- 콤마 추가
- 특정태그제외
- not 선택자
- 세자리 콤마
- 별표시
- 문자 위치
- JavaScript
- radio readonly
- 문자열 추출
- 자바스크립트
- 스크립트 시계
- mac 전체화면 보기
- tolowercase
- 카운트 증가
- 말풍선 그리기
- 문자열 함수
- 문자열
- JS
- SubString
- touppercase
- 천단위 나누기
- css 말풍선
Archives
- Today
- Total
목록디지털 시계 (1)
나의 IT Note
[JavaScript] 디지털 시계 구현하기
디지털 시계 구현 Loading... 24시간으로 구현 function updateClock() { var now = new Date(); var hours = now.getHours().toString().padStart(2, '0'); var minutes = now.getMinutes().toString().padStart(2, '0'); var seconds = now.getSeconds().toString().padStart(2, '0'); var timeString = `${hours}:${minutes}:${seconds}`; document.getElementById('clock').textContent = timeString; } // 매 초마다 시계 업데이트 setInterval(upd..
JavaScript
2024. 1. 23. 10:54