前端页面跳转

window.location.replace("https://www.cnblogs.com/");

window.location.href = "https://www.cnblogs.com/";

使用jQuery的属性替换方法 $(location).attr('href', 'https://www.cnblogs.com/');

$(window).attr('location','https://www.cnblogs.com/');

$(location).prop('href', 'https://www.cnblogs.com/')

原文地址:https://www.cnblogs.com/kisun168/p/9741020.html