📅  最后修改于: 2022-03-11 15:01:31.304000             🧑  作者: Mango
Solution #1
for Jquery you can use following code
$(location).prop('href', 'https://www.codegrepper.com/profile/shafeeque-ahmad')
Solution #2
for pure javascript you can use following solution
window.location.href='otherpage.com';
window.location.assign('otherpage.com');
//and...
window.location.replace('otherpage.com');