JS 返回上一步(退回上一步上一个网页)

Posted 一片空白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 返回上一步(退回上一步上一个网页)相关的知识,希望对你有一定的参考价值。

链接式:

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

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

按钮式:

<INPUT name="pclog" type="button" value="GO" onClick="location.href=’http://www.ekesn.com/‘">

 
直接跳转式:

<script>window.location.href=’http://www.ekesn.com‘;</script>

JS跳转页面参考代码


第一种: 
<script language="javascript" type="text/javascript"> 
window.location.href="login.jsp?backurl="+window.location.href; 
</script> 
第二种: 
<script language="javascript"> 
alert("返回"); 
window.history.back(-1); 
</script> 
第三种: 
<script language="javascript"> 
window.navigate("top.jsp"); 
</script> 
第四种: 
<script language="JavaScript"> 
self.location=’top.htm’; 
</script> 
第五种: 
<script language="javascript"> 
alert("非法访问!"); 
top.location=’xx.jsp’; 
</script>

来源:http://blog.sina.com.cn/s/blog_612c13510100to6f.html

以上是关于JS 返回上一步(退回上一步上一个网页)的主要内容,如果未能解决你的问题,请参考以下文章