我想将Paginator-Link与图片结合起来。
要加载我使用的图像:(显示图像,没有任何问题)
$this->Html->image('arrow_up.png');
我的自定义Paginator链接:(显示链接,没有任何问题)
$this->Paginator->link('',array('sort' => 'Item.vidduration', 'direction' => 'desc'));
两者结合在一起显示链接而没有图片:
$this->Paginator->link($this->Html->image('arrow_up.png', array("alt" => "Duration DESC")),array('sort' => 'Item.vidduration', 'direction' => 'desc'));
输出:
<img src="/img/arrow_up.png" alt="Duration DESC" />
我的错误在哪里?
答案 0 :(得分:2)
试试这个
<?php echo $this->Paginator->link($html->image('arrow_up.png', array("alt" => "Duration DESC")),array('sort' => 'Item.vidduration', 'direction' => 'desc'), $options = array('escape' => false)); ?>