일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- html charset
- html5 new tag
- #2차원배열
- #성적관리프로그램
- #C++ 연산자함수오버로딩
- html youtube
- html video
- #C++ has~a
- #bubbleSort
- #자바상속#자바이즈어#is~a
- html multimedia
- mac terminal command
- git flow
- #다차원포인터
- 하이퍼레저패브릭
- hyperledger transaction
- html object
- border-box
- html plug-in
- #JAVASCRIPT
- html code
- #binary
- html id
- relative path
- 토큰경제
- #android activity
- docker example
- #3차원배열
- #1차원배열
- #CallByAddress
Archives
- Today
- Total
A sentimental robot
Javascript ex1 본문
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87 |
<html>
<head>
<title>javascript</title>
<script language="javascript">
<!--배열 -->
var arrNumber = new Array();
arrNumber.push(1);
arrNumber.push(2);
arrNumber.push(3);
for (var i = 0; i < arrNumber.length; i++)
document.write(arrNumber[i] + "<br><br>");
<!--try~catch-->
var f = "eunbi"
try {
document.write("내이름은" + lastname); <!--lastname이란 변수가 없다.-->
} catch (ex) {
document.write(ex.message + "<br><br>");
}
<!--함수-->
function f1() {
document.write("f1호출 시" + "<br><br>");
}
f1();
function f2(num1, num2) {
return num1 + num2;
}
var n = f2(1, 3);
document.write("result=" + n + "<br><br>");
<!--윈도우창 띄우기-->
var user = prompt("이름을 입력해주세요.");
window.alert(user + "어서오세요!"); <!--window 생략가능, 내장 객체라서-->
<!-- window.confirm-->
var res = confirm("2018년에 이루고자 하는 것들을 이루셨나요?");
if (res) {
alert("수고하셨습니다! 2019년도 화이팅");
} else alert("저런..");
<!-- window.open-->
open("http://www.naver.com", "popup1", "left=0,top=0,width=300,height=150,location=yes,status=no");
<!--setTimeout 지정된 시간이 지나면 특정 함수를 실행-->
setTimeout(sayHello, 3000) <!--3초 있다가 함수 호출-->
function sayHello() {
alert("hi");
}
<!--setInterval 지정된 시간만큼 기다린 뒤 지정한 함수를 실행,이 동작을 반복-->
var i = 0;
function s() {
i++;
document.write("hi");
if (i == 5)
clearInterval(t);
}
var t = setInterval(s, 1000);
</script>
</head>
<body>
</body>
</html> |
cs |
'Web' 카테고리의 다른 글
Calculator ver.2 (0) | 2018.10.18 |
---|---|
Javascript ex2 (0) | 2018.10.18 |
HTML 회원가입 (0) | 2018.10.17 |
Calculator (0) | 2017.12.26 |
Mouse Cursor Image (0) | 2017.12.26 |