Copyright @ 2015-2024 织梦园 版权所有 Power by DedeCms
鲁ICP备15039853号-2

模板标签 TAG标签 网站地图 XML地图 今日更新 返回顶部
function GetPagebreak($totalPage, $nowPage, $aid)
{
if($totalPage==1)
{
return "";
}
// $PageList = "<li><a>共".$totalPage."页: </a></li>";
$nPage = $nowPage-1;
$lPage = $nowPage+1;
if($nowPage==1)
{
// $PageList.="<a href='#'>上一页</a>";
}
else
{
if($nPage==1)
{
// $PageList.="<a href='".$this->NameFirst.".".$this->ShortName."'>上一页</a>";
}
else
{
// $PageList.="<a href='".$this->NameFirst."_".$nPage.".".$this->ShortName."'>上一页</a>";
}
}
for($i=1;$i<=$totalPage;$i++)
{
if($i==1)
{
if($nowPage!=1)
{
$PageList.="<a href='".$this->NameFirst.".".$this->ShortName."' >1</a>";
}
else
{
$PageList.="<a href='#' class=\"on\">1</a>";
}
}
else
{
$n = $i;
if($nowPage!=$i)
{
$PageList.="<a href='".$this->NameFirst."_".$i.".".$this->ShortName."' >".$n."</a>";
}
else
{
$PageList.="<a href='#' class=\"on\">{$n}</a>";
}
}
}
if($lPage <= $totalPage)
{
// $PageList.="<a href='".$this->NameFirst."_".$lPage.".".$this->ShortName."'>下一页</a>";
}
else
{
// $PageList.= "<a href='#'>下一页</a>";
}
return $PageList;
}
|