第一种:
代码如下:
window.location.href=”login.jsp?backurl=”+window.location.href;
第二种:
代码如下:
alert(“返回”);
window.history.back(-1);
第三种:
代码如下:
window.navigate(“top.jsp”);
第四种:
代码如下:
self.location=’top.htm’;
第五种:
代码如下:
alert(“非法访问!”);
top.location=’xx.jsp’;
隔多少秒后自动跳转到其它页(js脚本)
在
之间加入js代码如下:
var secs = 3; //倒计时的秒数
var URL ;
function Load(url){
URL = url;
for(var i=secs;i>=0;i–)
{
window.setTimeout(‘doUpdate(‘ + i + ‘)’, (secs-i) * 1000);
}
}
function doUpdate(num)
{
document.getElementById(‘ShowDiv’).innerHTML = ‘将在’+num+’秒后自动跳转到主页’ ;
if(num == 0) { window.location = URL; }
}
然后在
里面加上 index.asp为自己要跳转的页面。在
之间加上方法二:
代码如下:
系统将在 5 秒钟后自动跳转至新网址,如果未能跳转,请点击。
delayURL();
function delayURL() {
var delay = document.getElementById(“time”).innerHTML;
var t = setTimeout(“delayURL()”, 1000);
if (delay > 0) {
delay–;
document.getElementById(“time”).innerHTML = delay;
} else {
clearTimeout(t);
window.location.href = “https://www.jb51.net”;
}
}