程序员人生 网站导航

location.href和location.replace处理跳转的差异

栏目:jscript时间:2013-12-05 16:35:08

location.href 通常被用来跳转到指定页面地址,例如:
location.href = 'http://www.mangguo.org'

location.replace 方法则可以实现用新的文档替换当前文档,例如:
location.replace('http://www.mangguo.org')

location.replace 方法不会在 history 对象中生成一个新的记录。当使用该方法时,新的 URL 将覆盖 history 对象中的当前记录。

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐