Javascript實現頁面跳轉的幾種方式

來源:互聯網
上載者:User

概述

  

相信很多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>

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.