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 | 31 |
Tags
- 클립스튜디오
- 클튜구매
- Math.floor();
- https://rectangleapp.com
- 구독
- 배열
- 디자인표준계약서
- 클튜할인
- 서평단
- 애플
- 클립스튜디오구독
- 클튜구독
- 맥
- 클튜
- 프프로로그그래래밍
- 맥에서 게임
- textContent
- js
- form
- 클립스튜디오할인
- querySelectAll
- 객체
- rectangleapp
- 형변환
- 별찍어보기
- 소수점이하버리기
- 게임 맥에서
- 구매
- 아이패드
- 클립스튜디오구매
Archives
- Today
- Total
duedue
시간에 따른 다른 메세지 표시 본문
<body>
시간에 따른 다른 메세지 표시<br>
시간 구하기 new Date().getHours();
<script>
var hour =new Date().getHours();
if(hour >= 0 && hour < 1){
window.alert('도시락 30% 할인');
} else if(hour === 9 || hour === 15){
window.alert('도시락 1+1 ');
} else {
window.alert('도시락 사세요');
}
</script>