728x90
728x170
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64 |
<!-- 날짜 정보 객체 예제1 -->
<script type="text/javascript">
var tv=new Object();
tv.width="30cm";
tv.height="25cm";
tv.weight="20kg";
tv.color="white";
tv.off=function(){
document.write("전원 off", "<br />");
}
document.write(tv.width, "<br />");
document.write(tv.height, "<br />");
document.write(tv.weight, "<br />");
document.write(tv.color, "<br />");
tv.off();
</script>
<!-- 날짜 정보 객체 예제2 -->
<script type="text/javascript">
var t=new Date();
var nowMonth=t.getMonth();
var nowDate=t.getDate();
var nowDay=t.getDay();
document.write("현재 월:"+nowMonth, "<br />");
document.write("현재 일:"+nowDate, "<br />");
document.write("현재 요일:"+noewDay, "<br />");
var m=new Date(200,4,31); // 2002(5.31) 월드컵 날짜 객체를 생성함.
var theMonth=m.getMonth();
var theDate=m.getDate();
var theDay=m.getDay();
document.write("2002월드컵 몇 월:"+theMonth, "<br />");
document.write("2002월드컵 몇 일:"+theDate, "<br />");
document.write("2002월드컵 무슨 요일:"+theDay, "<br />");
</script>
<!-- 날짜 정보 객체 예제3 -->
<script type="text/javascript">
var t=newDate(); // 오늘 날까 객체를 생성함.
var nowYear=t.getFullYear(); // 오늘 날짜의 연도 정보를 가져옴.
var theDate=new Date(nowYear,12,31); // 현재 연도에 12월 31일 날짜 객체를 생성함.
var diffDate=theDate-t; // 연말까지 남은 기간(밀리초(msc)) = 연말 날짜 - 현재 날짜
// 밀리초를 일로 계산
var result=Math.ceil(diffDate / (60*1000*60*24));
// 남은 일수를 출력
document.write("현재일로 부터 올해 말일까지는 "+result+"일 남았습니다.");
</script> |
cs |
소스 출처 : Do It! 자바스크립트+제이쿼리 입문 (정인용 지음, 이지스퍼블리싱)
728x90
그리드형(광고전용)
'Source Code > JavaScript' 카테고리의 다른 글
문자 객체 (0) | 2017.05.21 |
---|---|
배열 객체 (0) | 2017.05.21 |
수학 객체 (0) | 2017.05.21 |
숫자 객체 (0) | 2017.05.21 |
현재 연도와 월에 해당하는 전체 일자 출력 (0) | 2017.05.21 |
구구단 출력 프로그램 (0) | 2017.05.21 |
Boolean/Typeof/Texttable/If/For/While/Switch/Confirm Test (0) | 2017.05.21 |
간단한 실행문 (0) | 2017.05.21 |