-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex03.html
More file actions
26 lines (25 loc) · 902 Bytes
/
ex03.html
File metadata and controls
26 lines (25 loc) · 902 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
document.write(location + '<br>')
document.write(location.toString() +'<br>'); // 현재 사이트의 주소
document.write(location.protocol + '<br>'); // http https ftp 등
document.write(location.host + '<br>'); // 컴퓨터 주소
document.write(location.port + '<br>');
document.write(location.pathname + '<br>');
document.write(location.search + '<br>');
document.write(location.bookmark + '<br>');
document.write('protocol://host:port/pathname?search#hash');
</script>
<input type="button" value="don't click" onclick="
location.href = 'https://google.com';
">
</body>
</html>