2

我可以在详细信息视图中显示图像,阅读此无法在 Yii主题中显示图像。我想将宽度和 alt 标签添加到 img 标签中。是否可以?

我写如下:

    $this->widget('zii.widgets.CDetailView', array(
    'data'=>$model,
    'htmlOptions'=>array('class'=>'table table-striped responsive-table'),
    'attributes'=>array(
        'id',
        'code',
        'name',
        'description',
        array(
            'type'=>'raw',
            'width'=>'200',
            'alt'=>'hi images',
            'value'=> CHtml::image(Yii::app()->request->baseUrl.'/images/products/'.$model->image),
        ),
        'price',
    ),
));
4

1 回答 1

2

您可以添加此处描述的各种 html 选项。

公共静态字符串图像(字符串 $src,字符串 $alt='',数组$htmlOptions =array ( ))

所以它会像

CHtml::image(
    Yii::app()->request->baseUrl . '/images/products/' . $model->image ,
    'some thing here' , array(
    'style' => 'width = 200px; height: 100px',
));
于 2013-10-30T12:03:24.910 回答