js如何在指定页面跳转到另一指定页面

Posted 小A永不败

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js如何在指定页面跳转到另一指定页面相关的知识,希望对你有一定的参考价值。

要实现从一个页面A跳到另一个页面B,js实现就在A的js代码加跳转代码

JS跳转大概有以下几种方式:

第一种:(跳转到b.html)
<script language="javascript" type="text/javascript">
window.location.href="b.html";
</script>
第二种:(返回上一页面)
<script language="javascript">
window.history.back(-1);
</script>
第三种:
<script language="javascript">
window.navigate("b.html");
</script>
第四种:
<script language="JavaScript">
self.location=’b.html’;
</script>
第五种:
<script language="javascript">
top.location=’b.html’;
</script>

以上是关于js如何在指定页面跳转到另一指定页面的主要内容,如果未能解决你的问题,请参考以下文章

Thinkphp后台如何用js跳转到指定页面 怎么写

点击跳转到另外一个页面并打开指定js

如何用js添加点击事件,点击后跳转到指定动态页面

点击浏览器返回按钮能跳转到指定页面。求js代码

怎么用JS获取某一个指定页面(非本页面)的HTML代码?

js如何判断一个页面是不是已跳转到指定的页面了呢