前端笔记

window.history.go(-1)window.location.go(-1) 虽然都是回到上一页,但是:
window.history.go(-1)是返回上一页 window.location.go(-1)是刷新上一页

history.back(-1):直接返回当前页的上一页,数据全部消息,是个新页面

history.go(-1):也是返回当前页的上一页,不过表单里的数据全部还在

history.back(1)前进 history.back(-1)后退

1
2
3
4
5
window.location.reload(); //刷新
window.history.go(1); //前进
window.history.go(-1); //返回+刷新
window.history.forward(); //前进
window.history.back(); //返回
1
2
3
4
5
6
window.location.href = "https://fanyi.youdao.com/index.html#/";
window.history.back(-1); //返回上一页面
//点击id为button的按钮跳转
document.getElementById("button").onclick = function () {
  window.open("https://fanyi.youdao.com/index.html#/");
};
Licensed under CC BY-NC-SA 4.0
comments powered by Disqus
Built with Hugo
主题 StackJimmy 设计