<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>location</title>
</head>
<body>
</body>
<script type="text/javascript">
//location对象
//代表本地,包含当前页面的一些信息
//两种获取方式获取到的是同一个location对象
console.log(window.location);
console.log(document.location);
//加载一个新的文档,加载新网页
// location.assign("http://www.baidu.com");
//加载一个新的网页
location.replace("http://www.baidu.com");
//刷新.重新加载当前网页
//reload 可以有一个参数true或者false
//参数为false的时候,可能会从缓存加载
//参数为true的时候,不管缓存,都会从服务器重新加载
// location.reload();
</script>
</html>
网友评论