a标签中href=""的几种用法

Posted ConfidentLiu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了a标签中href=""的几种用法相关的知识,希望对你有一定的参考价值。

http://blog.csdn.net/u010297791/article/details/52784879

 

这是分页上的

<?php
function pages($page,$e_page)
{
$html=‘<a href="?page=1">index</a>‘.‘ ‘;
$pre=($page-1<=0)?$page:($page-1);
$html.=‘<a href="?page=‘.$pre.‘">pre</a>‘.‘ ‘;
$next=($page+1>=$e_page)?$page:($page+1);
$html.=‘<a href="?page=‘.$next.‘">next</a>‘.‘ ‘;
$html.=‘<a href="?page=‘.$e_page.‘">end</a>‘.‘ ‘;
return $html;
}
?>
意思就是

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

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

 

以上是关于a标签中href=""的几种用法的主要内容,如果未能解决你的问题,请参考以下文章

python变量赋值的几种形式细节

html中设置锚点定位的几种常见方法

如何禁止href跳转

1.Python实现字符串反转的几种方法

Python实现字符串反转的几种方法

在web page中使鼠标右击失效的几种方法