Home >php教程 >php手册 >ajax分页

ajax分页

WBOY
WBOYOriginal
2016-06-07 11:35:401184browse

ajax分页 bootstrap的样式
/**<br>  * @param $page         当前页<br>  * @param $count        总页数<br>  * @param $pageNum      每页显示条数<br>  * @param string $click 点击分页的时候执行的js函数名称<br>  * @param int $num 当前页前后各显示几页<br>  * @return string       返回分页的字符串<br>  */<br> function Page($page, $count, $pageNum = 15, $click = 'page', $num = 4)<br> {<br>     $pre = $page - $num;<br>     $html = '<div>';<br>     if ($pre          $pre = 1;<br>     }<br>     if ($page == 1) {<br>         $html .= '<button><i></i></button>';<br>     } else {<br>         $html .= '<button><i></i></button>';<br>     }<br>     for (; $pre          $html .= '<button>' . $pre . '</button>';<br>     }<br>     $html .= '<button>' . $page . '</button>';<br>     $max = (($page + $num) > ceil($count / $pageNum)) ? ceil($count / $pageNum) : ($page + $num);<br>     for ($i = $page + 1; $i          $html .= '<button>' . $i . '</button>';<br>     }<br>     $max = ceil($count / $pageNum);<br>     if ($max != $page) {<br>         $html .= '<button><i></i></button>';<br>     } else {<br>         $html .= '<button><i></i></button>';<br>     }<br>     return $html;<br> } <p class="da_word">AD:真正免费,域名+虚机+企业邮箱=0元 </p> </div>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn