js中的location对象

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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
</body>
</html>
<script type="text/javascript">
//location对象中 最有用的方法
//以下将来都要放在事件中触发!!!
//1.类似a标签的用法 就是通过js的方法 跳转网页
// location.href = "http://www.jd.com";
//2.重新加载本页面
// location.reload();
//3.替换本网页接口 功能跟第一个 href一致!!
// location.replace("http://taobao.com");

//以下 了解即可!!
//1.获取窗口的url地址
console.log(location);
console.log(location.protocol);
console.log(location.host);
console.log(location.port);



</script>

运行结果:


js中的location对象
http://ultracode.cn/2020/11/26/JS/js中的location对象/
作者
Win
发布于
2020年11月26日
许可协议