Codeigniter分页按钮样式

时间:2013-12-26 09:04:04

标签: codeigniter pagination

$config['next_link'] = 'Continue';
$config['next_tag_open'] = '<button type="button" name="next" id="next" class="btn btn-primary">';
$config['next_tag_close'] = '</button>';

上面是我的下一步按钮,它实际上是有效的,因为next_link是一个超链接,这意味着我必须只点击继续单词而不是按钮。有什么办法可以改善这个吗?

1 个答案:

答案 0 :(得分:2)

将按钮更改为span / div。

$config['next_link'] = 'Continue';
$config['next_tag_open'] = '<span class="btn btn-primary">';
$config['next_tag_close'] = '</span>';

然后更改css以使a链接看起来像按钮。

例如:

.btn a
{
   background-color:#CCC;
   padding:10px;
}

使用填充时,那些10px也可以点击。