程序中常用跳转------返回------
i
html跳转: <meta http-equiv="refresh" content="3" ; url="http://www.hnbiao.cn"> //3秒跳转;
php跳转:header("Location:login.php");
javascript跳转: window.navigate('url');
location.href="url";
location.replace("url"); //这个跳转不能返回,是页面重写替换...
实际应用必需记得:两种
location="url";
location.reload(true); //或者location.reload();