Home > Article > Web Front-end > How to implement jump to page in javascript
Javascript method to jump to the page: 1. Jump directly and add parameters, the code is [window.location.href="login.jsp?backurl=" window.location.href]; 2. Return The last preview interface.
The operating environment of this tutorial: Windows 7 system, JavaScript version 1.8.5, DELL G3 computer.
Javascript method to jump to the page:
First method: direct jump with parameters
<script language="javascript" type="text/javascript"> window.location.href="login.jsp?backurl="+window.location.href; </script>
Direct jump without parameters:
<script>window.location.href='http://www.baidu.com';</script>
Second: Return to the last preview interface
<script language="javascript"> alert("返回"); window.history.back(-1); </script>
Tag nesting:
<a href="javascript:history.go(-1)">返回上一步</a> <a href="<%=Request.ServerVariables("HTTP_REFERER")%>">返回上一步</a>
Related free learning recommendations: javascript video tutorial
The above is the detailed content of How to implement jump to page in javascript. For more information, please follow other related articles on the PHP Chinese website!