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