티스토리 뷰
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
<script type="text/javascript">
var date = new Date();
var hour = date.getHours();
switch(true){
case hour > 12 :
document.write("오후");
break;
case hour < 12:
document.write("오전");
break;
}
</script>
</head>
<body>
</body>
</html>
'java,web study > 5주차 (7월 29일~8월 4일)' 카테고리의 다른 글
while문 - 1초 카운트 (0) | 2013.08.02 |
---|---|
for문 - 1~1000까지 존재하는 소수의 합 구하기 (0) | 2013.08.02 |
switch문 (0) | 2013.08.02 |
조건문 (0) | 2013.08.02 |
배열 내용 출력 (0) | 2013.08.02 |
댓글