1

私はcodeigniter2.03とそのページ付けクラスを使用しています。次のような問題があります。

12

の最後

これがコントローラーの私のコードです:

$config['base_url'] = site_url().'/admin/seesubcategory/'; //set the base url for pagination
$config['total_rows'] = $a; //total rows
$config['per_page'] = '12'; //the number of per page for pagination
$config['uri_segment'] = 3; //see from base_url. 3 for this case
$this->pagination->initialize($config); //initialize pagination
$config['num_tag_open'] = '<div id="pagination">';  
$config['num_tag_close'] = '</div>';
$config['prev_link'] = '&lt;';
$config['prev_tag_open'] = '<div>';
$config['prev_tag_close'] = '</div>';

リンクを印刷するための私のコードは次のとおりです。

<?php echo $this->pagination->create_links(); ?>

そしてここに私のCSSがあります:

#pagination a, #pagination strong {
    background: #e3e3e3;
    padding: 4px 7px;
    text-decoration: none;
    border: 1px solid #cac9c9;
    color: #292929;
    font-size: 13px;
}

#pagination strong, #pagination a:hover {
    font-weight: normal;
    background: #cac9c9;
    display: inline-block;
}
4

1 に答える 1

2

あなたのコードは次のようになります

$config['base_url'] = site_url().'/admin/seesubcategory/'; //set the base url for pagination
$config['total_rows'] = $a; //total rows
$config['per_page'] = '12'; //the number of per page for pagination
$config['uri_segment'] = 3; //see from base_url. 3 for this case    
$config['num_tag_open'] = '<div id="pagination">';  
$config['num_tag_close'] = '</div>';
$config['prev_link'] = '&lt;';
$config['prev_tag_open'] = '<div>';
$config['prev_tag_close'] = '</div>';
$this->pagination->initialize($config); //initialize pagination

すべての最後に「構成」を初期化する必要があります

于 2012-09-27T04:54:50.643 に答える