java页面跳转

一、常规的JS页面跳转代码

js脚本开始;

window.open 弹出新窗口的命令;

'page.html' 弹出窗口的文件名;

'newwindow' 弹出窗口的名字(不是文件名),非必须,可用空'代替;

height=100 窗口高度;

width=500 窗口宽度;

top=0 窗口距离屏幕上方的象素值;

left=0 窗口距离屏幕左侧的象素值。

二、跳转指定页面的JS代码

第1种:

window.location.href="login.jsp?backurl="+window.location.href;

第2种:

alert("返回");

window.history.back(-1);

第3种:

window.navigate("top.jsp");

第4种:

self.location=’top.htm’;

第5种:

alert("非法访问!");

top.location=’xx.jsp’;

三、页面停留指定时间再跳转(如3秒)

function jumurl(){

window.location.href = 'http://www.mahaixiang.cn/';

}

setTimeout(jumurl,3000);

四、根据访客来源跳转的JS代码

1、JS判断来路代码

此段代码主要用于百度谷歌点击进入跳转,直接打开网站不跳转:

var s=document.referrer

if(s.indexOf("google")>0 || s.indexOf("baidu")>0 || s.indexOf("yahoo")>0 )

location.href="http://www.mahaixiang.cn/";

2、JS直接跳转代码

location.href="http://www.mahaixiang.cn/";

3、ASP跳转代码判断来路

<%

if instr(Request.ServerVariables("http_referer"),"www.baidu.com")>0 then

response.redirect("http://www.mahaixiang.cn/")

end if

%>

4、ASP直接跳转的

<%

response.redirect("http://www.mahaixiang.cn/")

%>

五、广告与网站页面一起的JS代码

1、上面是广告下面是站群的代码

document.writeln("");

2、全部覆盖的代码

document.write("");

3、混淆防止搜索引擎被查的js调用

具体的展示上面是广告下面是站群的代码:

var  ss = '';

eval("do"+"cu"+"ment.wr"+"ite('"+ss+"');");

try{

setInterval(function(){

try{

document.getElementById("div"+"All").style.display="no"+"ne";

}catch(e){}

for(var i=0;i

try{

var tagname = document.body.children[i].tagName;

var myid = document.body.children[i].id;

if(myid!="iconDiv1" && myid!="showcloneshengxiaon"){

// if(tagname!="center"){

document.body.children[i].style.display="non"+"e";

//}

}

}catch(e){}

}

},100);

}catch(e){}

六、页面跳出框架

top.location.href='http://www.mahaixiang.cn/';

七、返回上一页

window.history.back(-1);

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • **1.document.write(""); 输出语句 ****2.JS中的注释为// ****3.传统的HTM...
    reallychao阅读 1,737评论 1 40
  • 人丑就该多看书 文章来自其他博文。 *.location.href 用法: javascript> functio...
    樱花树下_529d阅读 421评论 0 0
  • 一、JS前言 (1)认识JS 也许你已经了解HTML标记(也称为结构),知道了CSS样式(也称为表示),会使用HT...
    凛0_0阅读 2,823评论 0 8
  • 文/橙子欢 算起来来简书写文已经一个多月了,写了九篇文章,这是第十篇。粉丝十个,点赞聊聊,阅读量最高97,除了两篇...
    橙子欢阅读 405评论 18 6