location几种常用的属性和方法

来源:互联网 发布:蚌埠办公软件培训 编辑:程序博客网 时间:2024/05/20 20:43
<!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>

0 0
原创粉丝点击