我正在使用 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。我们怎么能这样做????