URL查询,跳转命令search,hash|| replace(url),assign(url),.reload()

window.location.search

返回值:问号之后的:?number=1&year=2019

url: www.baidu.com/ ?number=1&year=2019

实例:
在这里插入图片描述
结果:
URL查询,跳转命令search,hash|| replace(url),assign(url),.reload()_第1张图片

window.location.hash

返回值:锚点
实例:
URL查询,跳转命令search,hash|| replace(url),assign(url),.reload()_第2张图片
结果:
URL查询,跳转命令search,hash|| replace(url),assign(url),.reload()_第3张图片

window.location.reload():

刷新页面

window.location.replace(url)

跳转页面,没有历史纪录

window.location.assign(url)

跳转页面,产生历史纪录

你可能感兴趣的:(JS)