Skip to content

Instantly share code, notes, and snippets.

@roshanca
Created April 16, 2018 08:56
Show Gist options
  • Save roshanca/4a0ae8d9e4416c02208a8b099b9980af to your computer and use it in GitHub Desktop.
Save roshanca/4a0ae8d9e4416c02208a8b099b9980af to your computer and use it in GitHub Desktop.
JavaScript 如何跳转页面
// 跳转
window.location.replace('https://www.awesomes.cn') // 不将被跳转页面加入浏览器记录
window.location.assign('https://www.awesomes.cn')
window.location.href = 'https://www.awesomes.cn'
window.location = 'https://www.awesomes.cn'
// 返回上一页
window.history.back()
window.history.go(-1)
// 刷新当前页
window.location.reload()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment