1

在 Cake 中,我们可以像这样在 image() 中添加 url:
$this->Html->image('image src...', array('url' => 'some address...');
输出为:
<a href="some address..."><img src="image src..." /></a>

如何将类和其他属性添加到a标签?

4

1 回答 1

6
echo $this->Html->link(
    $this->Html->image($imageSrc, array(
        'class'=>'class_of_image',
        'height' => '50',
        'width' => '100',
        'alt' => 'awesome close-up of me eating pizza'
    )),
    array(
        'controller' => 'your_controller',
        'action' => 'the_action'
    ),
    array(
        'class' => 'class_of_anchor',
        'escape' => false //to allow the image tag within the link
    )
);

随意将它的任何/所有部分写成一行 - 但出于 StackOverflow 的原因,这样阅读更容易。

于 2013-03-24T00:04:16.750 回答