-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswtich_1.html
More file actions
37 lines (34 loc) · 974 Bytes
/
Copy pathswtich_1.html
File metadata and controls
37 lines (34 loc) · 974 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
var site = prompt("네이버,다음,네이트,구글 중 \
즐겨 사용하는 포털검색 사이트는?","");
var url;
switch(site){
case "구글":
url = "www.google.com";
break;
case "다음":
url = "www.daum.net";
break;
case "네이버":
url = "www.naver.com";
break;
case "네이트":
url = "www.nate.com";
break;
default:
alert("보기 중에 없는 사이트입니다.");
}
if(url){
location.href = "http://" + url; //url에 지정된 주소로 이동합니다.
}
</script>
</body>
</html>