关于window.location
时间:2014-03-12 04:43:36
收藏:0
阅读:515
window.location.href,window.location.replace(),window.location.reload() 三者的区别
- window.location.href=“url”:改变url地址;
- window.location.replace(“url”):将地址替换成新url,该方法通过指定URL替换当前缓存在历史里(客户端)的项目,因此当使用replace方法之后,你不能通过“前进”和“后 退”来访问已经被替换的URL,这个特点对于做一些过渡页面非常有用!
- window.location.reload():强制刷新页面,从服务器重新请求!
关于window.location,布布扣,bubuko.com
原文:http://www.cnblogs.com/adder/p/3594326.html
评论(0)