0

我正在使用 html 标签在 cakephp 中创建图像链接,我在添加 src 路径时遇到问题。

我试过

<a href="#today1" id="lnk3">
 <img  src="/iserprofiles/app/webroot/img/todaysallocation.png">Todays Allocation</a>

但图像未加载。如果有人知道请回复。我知道我们也可以使用 cakephp 创建图片链接,但我遇到了一个问题

iu sed 这段代码

  <?php echo $this->Html->link($this->Html->image('todaysallocation.png',
  array('width' => '200', 'height' => '45')) ,
                   '#today',array('escape' => false));?>

我不想使用任何控制器或操作作为 url,我只是添加了“#today”,但我的问题是我需要为此添加一个 id。我们怎么能这样做????

4

1 回答 1

1

检查您的浏览器补丁:localhost/iserprofiles/app/webroot/img/todaysallocation.png ,但我认为问题出在您的 .htaccess 文件中,因为图像的路径看起来像localhost/iserprofiles/img/todaysallocation.png

于 2013-06-22T07:01:03.707 回答