微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – location.replace和location.href有什么区别?

两者有什么区别 :
location.replace(url)

location.href = url

我读到第一种方法刺激HTTP重定向,第二种方法类似,通过单击链接来跟踪网页.

但我真的不明白,这是什么意思.

解决方法

location.replace不会更新浏览器的历史记录,你不能按后退按钮,location.href就像点击链接一样.

The Location.replace()method replaces the current resource with the
one at the provided URL. The difference from the assign() method is
that after using replace() the current page will not be saved in
session History,meaning the user won’t be able to use the back button
to navigate to it.

资料来源:MDN

原文地址:https://www.jb51.cc/js/157423.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐