一、PHP
1.header()函数
header(''location:http://www.asphp.net'');
2.输出meta标签
echo ''<meta http-equiv="refresh" content="1;url=http://www.asphp.net">'';3.输出script标签
echo ''<script>window.location.href="http://www.asphp.net"</script>'';二、JavaScript
1.window.location.href
window.location.href="http://www.asphp.net";2.window.history.back
window.history.back(-1);//返回上一页3.window.navigate
window.navigate("http://www.asphp.net");
4.self.location
self.location=''http://www.asphp.net'';5.top.location
top.location=''http://www.asphp.net'';三、HTML
1.head头内的meta标签
<meta http-equiv="refresh" content="1; url=http://www.asphp.net/">
展开全文




123小朋2025/11/8 4:46:20