码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript--location.href的跳转

时间:2017-12-24 15:52:14      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:str   url   assign   强制   技术分享   ace   sign   img   来替   

页面重载

  true 强制从服务器加载
  false 优先从缓存加载
  window.location.reload(true);



window.location.href、self.location.href、location.href是本页面跳转 parent.location.href 是上一层页面跳转 top.location.href 是最外层的页面跳转
        window.history.forward()    前进
        window.history.back()       后退
        window.history.go(1)        前进
        window.history.go(-1)       后退

window.location.href = "http://www.baidu.com";
window.location.assign(
"http://www.baidu.com");
window.location.replace(
"http://www.baidu.com");

window.location.assign(url) : 加载URL 指定的新的 HTML 文档。就相当于一个链接,跳转到指定的url,当前页面会转为新页面内容,可以点击后退返回上一个页面。

window.location.replace(url) : 通过加载 URL 指定的文档来替换当前文档 ,这个方法是替换当前窗口页面,前后两个页面共用一个

窗口,所以是没有后退返回上一页的

 

技术分享图片

 

JavaScript--location.href的跳转

标签:str   url   assign   强制   技术分享   ace   sign   img   来替   

原文地址:http://www.cnblogs.com/mrszhou/p/8098133.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!