如何在锚标签和img标签中使用类

时间:2016-12-11 22:01:35

标签: cakephp cakephp-2.0 cakephp-3.0

 <a href="images/xyz.jpg" class="swipebox"><img src="images/abc.jpg" class="img-style row2"></a>.  

我必须在cakephp3中使用上面的代码。我已经尝试过html helper但是我的代码有一些语法错误。

这是我的代码,

<?php echo $this->Html->link('".$this->Html->image('abc.jpg', ['class' => 'img-style row2'])."', $this->Html->image('xyz.jpg', ['class' => 'swipebox'])); ?>

请帮助任何人。

1 个答案:

答案 0 :(得分:2)

将image方法用于链接方法,然后使用'escape' => false,参见示例

echo $this->Html->link(
              $this->Html->image('img.jpg',['class'=>'img-class','alt'   => 'img',]),
              ['controller'=>'', 'action'=>''],
              ['escape' => false,'class'=>'link-class'] 
);