sheep 发表于 2022-12-30 16:00:59

js页面跳转代码_8种常用方法(JavaScript)

js页面跳转代码_8种常用方法(JavaScript)

js跳转1:
window.location.replace 替换当前的历史记录项,因此您无法返回
<script>
    window.location.replace('跳转的网址')
</script>
js跳转2:
window.location 在您的历史记录中添加一项项目,您可以点击返回并返回跳转前页面
<script>
    window.location = '跳转的网址'
</script>
js跳转3:
<script>
   document.location.href = '跳转的网址'
</script>
js跳转4:
history对象的go()方法:
<a href='javascript:history.go(-1)' rel='返回上一步'>返回上一步</a>
history对象的back()方法:
<a href='javascript:history.back()' rel='返回上一步'>返回上一步</a>
js跳转5:
<script>
    top.location = '跳转的网址'
</script>
js跳转6:
meta方式实现跳转(content = 3 单位是秒)
<meta http-equiv=refresh content=3;url="跳转的网址">
js跳转7:
window.navigate('跳转的网址')
js跳转8:
self.location = '跳转的网址'
页: [1]
查看完整版本: js页面跳转代码_8种常用方法(JavaScript)