Maison  >  Article  >  développement back-end  >  ‘href=’后面,‘?’前面如果不加东西是指什么

‘href=’后面,‘?’前面如果不加东西是指什么

WBOY
WBOYoriginal
2016-07-06 13:52:581743parcourir

这是分页上的

<code><?php function pages($page,$e_page)
{
$html='<a href="?page=1">index'.' ';
$pre=($page-1pre'.' ';
$next=($page+1>=$e_page)?$page:($page+1);
$html.='<a href="?page='.%24next.'">next</a>'.' ';
$html.='<a href="?page='.%24e_page.'">end</a>'.' ';
return $html;
}
?></code>

请看第四行,,问号前面什么都没有,正常不是应该有一个地址码?为什么这里什么都没有?
(我觉得意思可能是指当前页,但是当前页不是#吗?)

回复内容:

这是分页上的

<code><?php function pages($page,$e_page)
{
$html='<a href="?page=1">index'.' ';
$pre=($page-1pre'.' ';
$next=($page+1>=$e_page)?$page:($page+1);
$html.='<a href="?page='.%24next.'">next</a>'.' ';
$html.='<a href="?page='.%24e_page.'">end</a>'.' ';
return $html;
}
?></code>

请看第四行,,问号前面什么都没有,正常不是应该有一个地址码?为什么这里什么都没有?
(我觉得意思可能是指当前页,但是当前页不是#吗?)

当前页面,不过多了个page参数

“#”号其实是锚标记的前缀而不是当前页面,专业名词叫网页hash,浏览器的返回按钮也用这个进行网页内容的定位,也支持JS对网页的定位

点击指定href="#content"的链接,可以定位到hello world这个标签的位置,如果只有#那就定位到顶部,你会发现网页是没有刷新的

但是如果href里面为空则定位到当前页面

如果当前页面地址是

http://www.xxx.com/a.php?b=1&c=2

那么这个页面里的
<a href="?d=1">???</a>
跳转的页面就是
http://www.xxx.com/a.php?d=1

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn