JavaScript返回上一页的方法有以下几种:
window.history.go(-1);
window.history.back();
window.location.href = document.referrer;
这些方法都可以用来返回到上一页,具体使用哪种方法取决于具体的需求和场景。