您的位置:首页 > 其它

location几种常用的属性和方法

2016-06-17 19:03 155 查看
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>location</title>
</head>
<body>
<button onclick="test()">点击href</button>
<!-- location.href跳转的页面可以通过返回键返回 -->
<button onclick="test2()">点击replace</button>
<!-- location.replace跳转的页面不能通过返回键返回 -->
<input type="text">
<button onclick="zai()">重新载入1</button>
<button onclick="zai2()">重新载入2</button>
<script>
console.log(window.location)
console.log(window.location.href)
function test(){
location.href="2.html"
}
function test2(){
location.replace("2.html")
}
function zai(){
location.reload()
}
// 从缓存中载入
function zai2(){
location.reload(true)
}
// 无视缓存,直接从服务器载入,刷新缓存
</script>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: