通过以下可以改变浏览器中的url
跳转到home路径下:
location.hash='home'
跳转到about路径下:
history.pushState({},'','about')
向上回退:
history.back()
向前进:
history.forward()
使用test路径替换之前的url,不能回退
history.replaceState({},'','test')
标签:hash,url,html5,跳转,test,home,history From: https://www.cnblogs.com/ixtao/p/16897502.html