location.assign(" http://www.jxbh.cn")
这样,就可以立即打开新URL并在浏览器的历史记录中生成一条记录。如果是将location.href
或window.location设置为一个URL值,也会以该值调用assign()方法。例如,下列两行代码与显式调用assign()方法的效果完
全一样:
window.location="http://www.jxbh.cn";
location.href="http://www.jxbh.cn";
在这些改变浏览器位置的方法中,最常用的是设置location.href属性。
另外,修改location对象的其他属性也可以改变当前加载的页面。下面的例子展示了通过将hash.search.hostname.pathname和port属性设置为新值来改变URL
header()函数是PHP中进行页面跳转的一种十分简单的方法。header()函数的主要功能是将HTTP协议标头(header)输出到浏览器。header()函数的定义如下:
void header (string string [,bool replace [,int http_response_code]])
可选参数replace指明是替换前一条类似标头还是添加一条相同类型的标头,默认为替换。
第二个可选参数http_response_code强制将HTTP相应代码设为指定值。 header函数中Location类型的标头是一种特殊的header调用,常用来实现页面跳转。注意:1.location和“:”号间不能有空格,否则不会跳转。
html问题,浏览器怎么设置header,简单点说,将是想用浏览器(客户端)发一个数据 。header() 函数向客户端发送原始的 http 报头。认识到一点很重要,即必须在任何实际的输出被发送之前调用 header() 函数。
方法/步骤
1、定义和用法
header() 函数向客户端发送原始的 http 报头。
认识到一点很重要,即必须在任何实际的输出被发送之前调用 header() 函数(在 php教程 4 以及更高的版本中,您可以使用输出缓存来解决此问题):
<html>
实例一
代码如下复制代码
<?php # script 2.7 - view_tasks.php
// connect to the database:
$dbc = @mysql教程i_connect ('localhost', 'username', 'password', 'test') or die ('<p>could not connect to the database!</p></body></html>')
// get the latest dates as timestamps教程:
$q = 'select unix_timestamp(max(date_added)), unix_timestamp(max(date_completed)) from tasks'
$r = mysqli_query($dbc, $q)
list($max_a, $max_c) = mysqli_fetch_array($r, mysqli_num)
// determine the greater timestamp:
$max = ($max_a >$max_c) ? $max_a : $max_c
// create a cache interval in seconds:
$interval = 60 * 60 * 6// 6 hours
// send the header:
header ("last-modified: " . gmdate ('r', $max))
header ("expires: " . gmdate ("r", ($max + $interval)))
header ("cache-control: max-age=$interval")
?>
实例二
代码如下复制代码
<?php
// 结果出错
// 在调用 header() 之前已存在输出
header('location: http://www./')
?>语法
header(string,replace,http_response_code)
提示用户保存一个生成的 pdf 文件(content-disposition 报头用于提供一个推荐的文件名,并强制浏览器显示保存对话框):
代码如下复制代码
<?php
header("content-type:application/pdf")
// 文件将被称为 downloaded.pdf
header("content-disposition:attachmentfilename='downloaded.pdf'")
// pdf 源在 original.pdf 中
readfile("original.pdf")
?>
<html>
<body>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)