您现在的位置:首页 >> 前端 >> 内容

页面跳转的方式以及区别详解

时间:2018/2/2 14:02:44 点击:

  核心提示:页面跳转的方式以及区别详情描述跳转方式有:- window.location.href,- window.location.replace(),- window.location.reload()三者...

页面跳转的方式以及区别

详情描述

跳转方式有:

- window.location.href,

- window.location.replace(),

- window.location.reload()

三者的区别:

1. window.location.href=“url”:改变url地址;

2. window.location.replace(“url”):将地址替换成新url,该方法通过指定URL替换当前缓存在历史里(客户端)的项目,因此当使用replace方法之后,你不能通过“前进”和“后 退”来访问已经被替换的URL,这个特点对于做一些过渡页面非常有用!

3. window.location.reload():强制刷新页面,从服务器重新请求!

解决的问题,在app中嵌套的网页中,收到传的参数时,用replace替换当前url。且不加入历史栈 

作者:网络 来源:FE-阿阳的博客