JavaScript方法:
// 类似于系统自动跳转 window.location.replace("https://www.dustit.me"); // 类似于用户点击操作 window.location.href = "https://www.dustit.me";
模仿用户点击操作时请用 window.location.href
方法。
jQuery 方法:
// jQuery 跳转到指定页面 $(location).attr('href','https://www.dustit.me') $(window).attr('location','https://www.dustit.me') $(location).prop('href', 'https://www.dustit.me')