连接式:javascript
<a href="javascript:history.go(-1)">返回上一步</a>java
<a href="<%=Request.ServerVariables("HTTP_REFERER")%>">返回上一步</a>jsp
按钮式:url
<INPUT name="pclog" type="button" value="GO" onClick="location.href=’http://www.ekesn.com/‘">spa
直接跳转式:orm
<script>window.location.href=’http://www.ekesn.com‘;</script>htm
JS跳转页面参考代码ip
第一种:
<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>it