如何在php中的锚标签内插入alt标签?

时间:2016-01-20 04:58:48

标签: php html

    <div >
        <a href="<?=site_url()?>"><?=img('logo.png',array('class'=>'logo'))?></a>
    </div>

我想为logo.png

添加ALT TAG

感谢

4 个答案:

答案 0 :(得分:1)

如果您使用的是代码点火器框架,您可以这样做

来自Codeigniter文档

$image_properties = array(
          'src' => 'images/picture.jpg',
          'alt' => 'Me, demonstrating how to eat 4 slices of pizza at one time',
          'class' => 'post_images',
          'width' => '200',
          'height' => '200',
          'title' => 'That was quite a night',
          'rel' => 'lightbox',
);

img($image_properties);

img()

答案 1 :(得分:1)

猜猜你正在使用某种框架,所以答案可能不正确。 请试试这个:

<div>
    <a href="<?=site_url()?>"><?=img('logo.png', array('class'=>'logo', 'alt'=>'Write here your alternative text'))?></a>
</div>

答案 2 :(得分:1)

  <div >
        <a title="your site" href="<?=site_url()?>"><?=img('logo.png',array('class'=>'logo'))?></a>
    </div>

您不能在锚标记中使用alt属性,而是使用标题属性,或者如果它是图像,则它是徽标。您可以使用img tag和alt属性。

可能有点像修改。

<a href="<?=site_url()?>"><img src="<?=img('logo.png',array('class'=>'logo'))?>" alt="your site" /></a>

答案 3 :(得分:1)

查看代码之后,您可能会使用“codeigniter”框架,下面是您的代码的解决方案。下面的代码显示了如何在img函数中添加属性。您只需要传递一个数组,包含一个属性和值。

<div>
<a href="<?=site_url()?>">
<?= img(array('src'=>'image/logo.png', 
                    'alt'=> 'alt information',
                     'class'=>'logo')); ?>
</a>
</div>

请更正您的语法。