其他
使用 JS 实现页面跳转的几种方式总结,小菜一碟!
<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>
web 前端 7 种你可能不知道的 JavaScript 循环变体
微软公司将不兼容 IE 的网站自动重定向至 Edge 浏览器
觉得本文对你有帮助?请分享给更多人
关注「前端知音」看更多干货