博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实现本页面跳转的几种方式
阅读量:6709 次
发布时间:2019-06-25

本文共 2334 字,大约阅读时间需要 7 分钟。

html头添加代码

js实现

一、最外层top跳转页面,适合用于iframe框架集

top.window.location.href("http://www.baidu.com");

============================================================================================

二、window.location.href和window.location.replace的区别

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

  2.window.location.replace(“url”):将地址替换成新url,该方法通过指定URL替换当前缓存在历史里(客户端)的项目,

  因此当使用replace方法之后,你不能通过“前进”和“后 退”来访问已经被替换的URL,这个特点对于做一些过渡页面非常有用!

三、强制页面刷新

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

============================================================================================

四、window.location.reload();

页面实现跳转和刷新:

  1 history.go(0)

  2 location.reload()
  3 location=location
  4 location.assign(location)
  5 document.execCommand('Refresh')
  6 window.navigate(location)
  7 location.replace(location)
  8 document.URL=location.href

这几个都可以刷新:

  window.location.reload();刷新

  window.location.href=window.location.href;刷新
  window.close();关闭窗口,不弹出系统提示,直接关闭 
  window.close()相当于self属性是当前窗口
  window.parent.close()是parent属性是当前窗口或框架的框架组

页面实现跳转的九种方法实例:

1 setTimeout('window.navigate("top.html");',2000);2 setTimeout('window.document.location.href="top.html";',2000);3 setTimeout('window.document.location="top.html";',2000);4 setTimeout('window.location.href="top.html";',2000);5 setTimeout('window.location="top.html";',2000);6 setTimeout('document.location.href="top.html";',2000); 7 setTimeout('document.location="top.html";',2000);8 setTimeout('location.href="top.html";',2000);9 setTimeout('location.replace("top.html")',2000);

  //window对象

  //document对象

  //location对象
  //href属性

  //1.window.document.location.href
  //2.window.document.location
  //3.window.location.href
  //4.window.location

  //5.document.location.href

  //6.document.location
  //7.location.href
  //8.window.navigate
  //9.location.replace

只要使用location方法,和任意的window对象,location对象,href属性连用,都可以页面的跳转

解释:

  location是个对象,比如本页的document.location和window.location的属性有
  location.hostname = community.csdn.net
  location.href = http://community.csdn.net/Expert/topic/4033/4033372.xml?temp=2.695864E-02
  location.host = community.csdn.net
  location.hash =
  location.port =
  location.pathname = /Expert/topic/4033/4033372.xml
  location.search = ?temp=2.695864E-02
  location.protocol = http:
可见href是location的属性,类别是string。

转载于:https://www.cnblogs.com/mrxia/p/3573615.html

你可能感兴趣的文章
JS---分解质因数
查看>>
递推DP UVA 590 Always on the run
查看>>
设备读写方式
查看>>
实验箱FPGA部分测试报告及A8与FPGA链接测试报告
查看>>
CC2640R2F&TI-RTOS 拿到 TI CC2640R2F 开发板 第一件事就是移植串口驱动,重定向 printf...
查看>>
使用docker 安装 GITLIB
查看>>
既完美又可爱的拖拽(原生js)
查看>>
linux mysql 找不到 <mysql/mysql.h>
查看>>
JS-过滤敏感词【RegExp】
查看>>
HTC G11短信为什么对单独一个人发不出去??!!!!跪求解啊!!!!
查看>>
ObservableCollection 与list
查看>>
在工作空间中构建和使用catkin包
查看>>
Oracle RAC 归档 与 非归档 切换
查看>>
UVA-1335(UVALive-3177) Beijing Guards 贪心 二分
查看>>
main函数的参数
查看>>
nginx启动时报错
查看>>
C++ AFX_MANAGE_STATE(AfxGetStaticModuleState())的作用
查看>>
mongodb sort
查看>>
crossplatform---Node.js Applications with VS Code
查看>>
winform线程间操作UI的五种方法
查看>>