创建时间:2017-03-04
输出javascript语法跳转
echo "<script>location.href='http://www.mrchen.top';</script>";输出PHP语法跳转
header("location:http://www.mrchen.top");输出html标签跳转
<meta http-equiv="refresh" content="0; url=http://www.mrchen.top/" />JavaScript
history.back(0) 刷新
history.back(1) 前进
history.back(-1) 后退
//功能相当于浏览器上面的前进后退按钮
<input type=button value=刷新 onclick="window.history.back(0)">
<input type=button value=前进 onclick="window.history.back(1)">
<input type=button value=后退 onclick="window.history.back(-1)">