1: 参考:http://blog.csdn.net/oscar999/article/details/19039355
<pre>描述:发送一个自定义的http报文,换句话说:PHP返回的数据的格式或字符集。
语法:void header ( string $string)
举例:header(“content-type:text/html;charset=utf-8”) //设置PHP返回数据的字符集
header(“location:http:www.sina.com.cn”); //网页跳转
JS中的跳转:
<script>
window.location="http://www.csdn.net";
</script>
HTML跳转:<meta http-equiv="refresh" content="0; URL=http://www.csdn.net">
URL统一资源定位器。
http://www.sina.com.cn/index.php?username=yao&userpwd=123456#top
?之前是文件名称。?之后为查询字符串。
查询字符串:?username=yao&userpwd=123456 //location.search
查询字符串之后,就是锚点名称。如:#top
</pre>
echo "<script>location.href='0322.php'</script>";
2:js跳转删除实例:注意里面js传递参数拼接: