页面跳转:

1: 参考:http://blog.csdn.net/oscar999/article/details/19039355

描述:发送一个自定义的http报文,换句话说:PHP返回的数据的格式或字符集。
语法:void header ( string $string)
举例:header(“content-type:text/html;charset=utf-8”) //设置PHP返回数据的字符集
header(“location:http:www.sina.com.cn”); //网页跳转
JS中的跳转:

HTML跳转:

URL统一资源定位器。
http://www.sina.com.cn/index.php?username=yao&userpwd=123456#top
?之前是文件名称。?之后为查询字符串。
查询字符串:?username=yao&userpwd=123456 //location.search
查询字符串之后,就是锚点名称。如:#top

echo "";

2:js跳转删除实例:注意里面js传递参数拼接:


页面跳转:_第1张图片
Paste_Image.png
页面跳转:_第2张图片
Paste_Image.png

你可能感兴趣的:(页面跳转:)