codeigniter 分页中第一个数字页的 URL
如何将链接号 1
的 url 与其他链接一样,在 codeigniter 分页中,当开始(刷新)页面时
How can put url for link number 1
like other links, in codeigniter pagination, when start(refresh) page
« 第一个 <1 2 3 4 5 > 最后»
« First < 1 2 3 4 5 > Last »
默认数字 1
是 1
.我希望它像其他号码一样在第一个加载页面中获取链接页面.
by default number 1
is <strong>1</strong>
. i want it same like other number get link page in first load page.
怎么样?
推荐答案
它在用于分页的配置中.从文档( http://codeigniter.com/user_guide/libraries/pagination.html):
It's in the config for pagination. From the docs ( http://codeigniter.com/user_guide/libraries/pagination.html ):
//Customizing the "Current Page" Link
$config['cur_tag_open'] = '<a href="'.base_url().$this->uri->uri_string().'">';
$config['cur_tag_close'] = '</a>';
您可以将这些值更改为 或您选择的任何其他内容.
You can change the values of these to <span>
or whatever else you choose.
相关文章