概述
相信很多Web開發人員都知道,在開發Web程式的時候,對於頁面之間的跳轉,有很多種,但是有效跳轉則事半功倍,下面就是我在平時的開發過程中所用到的一些JavaScript跳轉方式,拿出和大家共用一下。
第一種:直接跳轉加參數
<script language="javascript" type="text/javascript">
window.location.href="login.jsp?backurl="+window.location.href;
</script>
直接跳轉無參數:
<script>window.location.href='http://www.baidu.com';</script>
第二種:返回上一次預覽介面
<script language="javascript">
alert("返回");
window.history.back(-1);
</script>
標籤嵌套:
<a href="javascript:history.go(-1)">返回上一步</a>
<a href="<%=Request.ServerVariables("HTTP_REFERER")%>">返回上一步</a>
第三種:指定跳轉頁面 對架構無效。。。
<script language="javascript">
window.navigate("top.jsp");
</script>
第四種:指定自身跳轉頁面 對架構無效。。
<script language="JavaScript">
self.location='top.htm';
</script>
第五種:指定自身跳轉頁面 對架構有效。。
<script language="javascript">
alert("非法訪問!");
top.location='xx.aspx';
</script>
第六種:按鈕式 在button按鈕添加 事件跳轉。。
<input name="pclog" type="button" value="GO" onClick="location.href='login.aspx'">
第七種:在新視窗開啟:
<a href="javascript:" onClick="window.open('login.aspx','','height=500,width=611,scrollbars=yes,status=yes')">開新視窗</a>
應用執行個體:
<head>
<script language="javascript">
function old_page()
{
window.location = "login.aspx"
}
function replace()
{
window.location.replace("login.aspx")
}
function new_page()
{
window.open("login.aspx")
}
</script>
</head>
<body>
<input type="button" onclick="new_page()" value="在新視窗開啟s"/>
<input type="button" onclick="old_page()" value="跳轉後有後退功能"/>
<input type="button" onclick="replace()" value="跳轉後沒有後退功能"/>
</body>