博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Javascript] Redirect the browser using JavaScript
阅读量:5074 次
发布时间:2019-06-12

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

Three methods to preform redirection in browser:

  1. widnow.location.href
  2. window.location.assign
  3. window.location.replace

1 & 2, they are pretty much the same, just 1 is the property and 2 is the function, some people say use property is a little bit faster than calling a function. So they prefer using 1th.

1: window.location.href="http://www.egghead.io";2: window.location.assign("http://www.egghead.io");

 

The differeces between 1 & 2 with 3 is:

 , is that replace() removes the URL of the current document from the document history, meaning that it is not possible to use the "back" button to navigate back to the original document.

转载于:https://www.cnblogs.com/Answer1215/p/5173626.html

你可能感兴趣的文章
Lua笔记——1.Building Lua 开发环境
查看>>
改进xutils下载管理器,使其,在随意地方进行进度更新,以及其它状态监听操作...
查看>>
swift -变量的定义与使用
查看>>
BBED标记坏块以及修复坏块
查看>>
Codeforces 86C Genetic engineering (AC自己主动机+dp)
查看>>
浅谈前端三大框架Angular、react、vue
查看>>
luogu P1725 琪露诺
查看>>
[转]How to translate WORLD coordinates to TERRAIN coordinates in Unity3d
查看>>
HDU 4333 Revolving Digits
查看>>
trie 树 模板
查看>>
洛谷 [P1948] 电话线
查看>>
MM主要的表和主要字段
查看>>
数据验证随想
查看>>
k8s etcd 集群配置安装
查看>>
SQL反模式学习笔记16 使用随机数排序
查看>>
MySQL_第一部基础入门
查看>>
XML 树结构,语法规则,元素,属性,验证及其解析
查看>>
hdu 4850 Wow! Such String!(欧拉回路)
查看>>
rlwrap(在sqlplus下使用上下键)
查看>>
重新初始化VS2010
查看>>