js、jQuery页面跳转的几种方式

 

比较常用有以下几种方式:

//用href跳转
window.location.href = "https://www.cnblogs.com/lyso";
//用http的重定向来跳转
window.location.replace("https://www.cnblogs.com/lyso");

//新窗口打开
window.open('https://www.cnblogs.com/lyso');

//返回上一页
window.history.back(-1);

 

posted @ 2021-03-05 11:48  於生  阅读(2213)  评论(0编辑  收藏  举报