页面跳转方式

Posted @circle

tags:

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

       按钮式:

  <INPUT name="pclog" type="button" value="GO" onClick="location.href=\'http://www.baidu.com/\'">

  链接式:

  <a href="javascript:history.go(-1)">返回上一步</a>

  <a href="<%=Request.ServerVariables("HTTP_REFERER")%>">返回上一步</a>

  直接跳转式:

  <script>window.location.href=\'http://www.ddhbb.com\';</script>

  开新窗口:

  <a href="javascript:" onClick="window.open(\'http://www.cnblogs.com/circleone/\',\'\',\'height=500,width=611,scrollbars=yes,status=yes\')">布丁          足迹</a>

        JS跳转页面参考代码
第一种:
<script language="javascript" type="text/javascript">
window.location.href="http://www.cnblogs.com/circleone/";
</script>
第二种:
<script language="javascript">
alert("返回");
window.history.back(-1);
</script>
第三种:
<script language="javascript">
window.navigate("http://www.cnblogs.com/circleone/");
</script>
第四种:
<script language="JavaScript">
self.location=’http://www.cnblogs.com/circleone/’;
</script>
第五种:
<script language="javascript">
alert("非法访问!");
top.location=’http://www.cnblogs.com/circleone/’;
</script>

以上是关于页面跳转方式的主要内容,如果未能解决你的问题,请参考以下文章

jquery跳转到指定页面有几种方式

Angular中实现页面跳转的两个方法

vue中利用a标签进行页面跳转,怎样做才能跳转呢

vue 不是路由跳转的页面怎么缓存

thinkphp页面跳转有几种方法?

小程序中如何实现页面跳转