我有来自HTML编码器的前一个箭头的代码
<img src="<?=$this->webroot?>img/arrow_button_prev.png" alt="Previous Event"
style="opacity:1.0;filter:alpha(opacity=100); " onmouseover="this.style.opacity=0.7;this.filter.alpha.opacity=70"
onmouseout="this.style.opacity=1.0;this.filter.alpha.opacity=100" />
我需要将该图像固定为分页
<?php echo $this->Paginator->prev('<< ' , array(), null, array('class'=>'disabled'));?>
我试图替换&lt;&lt;使用img标签,它输出HTML代码。我怎样才能做到这一点?
答案 0 :(得分:7)
试试这个:
<?php
echo $this->paginator->prev($html->image('arrow_button_prev.png'), array('escape' => false), null, array('class'=>'disabled'));
?>
答案 1 :(得分:1)
尝试使用CakePHP 1.3: 例如:上一页按钮:
<?php
$prev_img = $html->image("button/compare-slider-btn-l.png", array("width" => "31px", "height" => "90px", "id" => "cmp_slider_click_l"));
echo $this->Paginator->prev(!$this->Paginator->hasPrev() ? null : $prev_img, array('escape' => false), !$this->Paginator->hasPrev() ? __($prev_img, false) : null, array('class'=>'disabled'));
?>
答案 2 :(得分:0)
您需要设置“escape”=&gt; false以防止图像标记被转义。