联系官方销售客服

1835022288

028-61286886

POSCMS 版主:POSCMS负责人
分页给链接添加属性无效是不是我写错什么了
类型:POSCMS 更新时间:2018-06-29 10:59:42 分页

分页给链接添加class属性无效,是不是我写错什么了。



blob.png

回帖
  • 迅睿粉丝
    #1楼    迅睿粉丝
    2018-06-29 08:18:56
    0
    // Deprecated legacy support for the anchor_class option
    // Should be removed in CI 3.1+
    不支持这个写法了,翻译下上面的,ci官方的注释
  • 迅睿粉丝
    #2楼    迅睿粉丝
    2018-06-29 10:08:35
    0
    【可接二开、定制、使用解答】1楼主要是用官方说的方法也无效
    $config['attributes'] = array('class' => 'myclass');
  • 迅睿粉丝
    #3楼    迅睿粉丝
    2018-06-29 10:24:11
    0
    这个参数可以,我试过成功
    image.png
    【tianfuxi】2楼
  • 迅睿粉丝
    #4楼    迅睿粉丝
    2018-06-29 10:28:19
    0
    【可接二开、定制、使用解答】3楼是在 pagination.php 文件里面加的吗?我试过加在最后无效,加在模板中也无效
  • 迅睿粉丝
    #5楼    迅睿粉丝
    2018-06-29 10:38:36
    0
    http://www.xunruicms.com/v3doc/244.html
  • 迅睿粉丝
    #6楼    迅睿粉丝
    2018-06-29 10:40:22
    0
    【九天网络(JiuDay)】5楼看了手册就是不知道下面代码加到哪里
    $config['attributes'] = array('class' => 'myclass');
  • 迅睿粉丝
    #7楼    迅睿粉丝
    2018-06-29 10:52:04
    0
    文件中使用
    // 给每一个链接添加 CSS 类
        'attributes' => array('class' => 'myclass'),
    直接在模板页面配置
    <?php
    $ci->template->pagination = array(
    'next_link' => '下页',
    'prev_link' => '上页',
    'last_link' => '第一页',
    'first_link' => '最后页',
    'attributes' => array('class' => 'myclass'),
    );
    ?>
    满意答案
  • 迅睿粉丝
    #8楼    迅睿粉丝
    2018-06-29 10:59:42
    0
    原来是这样写,太感谢了