在前端开发中,我们经常需要使用JavaScript来实现页面之间的跳转。下面介绍了几种常见的跳转方法。
复制代码<script language="javascript" type="text/javascript"> window.location.href = "jingxuan.do?backurl=" + window.location.href; </script>
复制代码<script> window.location.href = 'http://blog.yoodb.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>
复制代码<input name="前端知音" type="button" value="前端知音" onClick="location.href='login.do'">
复制代码<a href="javascript:" onClick="window.open('login.do','','height=500,width=611,scrollbars=yes,status=yes')">新窗口</a>
复制代码<head> <!--只刷新不跳转 --> <meta http-equiv="refresh" content="5"> <!--定时跳转 --> <meta http-equiv="refresh" content="5;url=index.html"> </head>
以上是几种常见的使用JavaScript进行页面跳转的方法。根据具体需求,选择合适的方法来实现页面跳转功能。