javascript實作跳到頁面的方法:1、直接跳轉加參數,程式碼為【window.location.href="login.jsp?backurl=" window.location.href】;2、返回上一次預覽介面。
本教學操作環境:windows7系統、javascript1.8.5版,DELL G3電腦。
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>
#相關免費學習推薦:javascript影片教學
以上是javascript如何實現跳到頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!