<五>
网页跳转方法+代码
1. window.location
<body onload=window.location="http://www.hao51xx.com(请换成你的网址)"></body>
或(此法应用范围较广,并可应用在一般后台编辑器中)
<script>window.location="<A href='http://xxx"http://xxx"</script>
2. META标志
<META HTTP-EQUIV=refresh content="0; url=http://www.hao51xx.com(请换成你的网址)">
//其中content后面的阿拉伯数字是代表过几秒中钟转入目标网页。
3. 利用框架隐藏转向地址(此方法不便用 dreamweaver 编辑,请使用记事本或其他文本编辑器处理)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>知觅__朱高站</title>
</head>
<frameset rows="*,0" frameborder="no" border="0" framespacing="0">
<frame src="http://www.hao51xx.com(请换成你的网址)" name="mainFrame" id="mainFrame">
<frame src="" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame">
</frameset>
<noframes>
<body>
请用IE浏览
</body>
</noframes>
</html>
<六><html>
<head>
<title>页面跳转</title>
<meta http-equiv="refresh" content="3;url=http://www.hao51xx.com">
</head>
<body>
此页面三秒后跳转到http://www.hao51xx.com/
</body>
</html>