这似乎应该很简单,但我是Cake
PHP的新手.也许这只是我应该用良好的HTML编写的东西,但是 – 希望通过CakePHP的HTML助手找到如何做到这一点.
我只想要一个具有target =“_ blank”的图像链接.
这是我试过的:
<?PHP echo $this->Html->link($this->Html->image('tmp/728x90.jpg',array('alt'=>'advertisement','height'=>'90','width'=>'728')),'http://www.google.com',array('target'=>'_blank')); ?>
(全部在一行 – 刚刚分手,方便查看)
但是当我这样做,我得到这个:
<a href="http://www.google.com" target="_blank"><img src="/img/tmp/728x90.jpg" alt="advertisement" height="90" width="728" /></a>
任何帮助是极大的赞赏.
回答(谢谢欺骗)
<?PHP $image = $this->Html->image( 'tmp/300x600.jpg',array( 'alt'=>'advertisement','height'=>'600','width'=>'300' ) ); echo $this->Html->link( $image,array( 'target'=>'_blank','escape' => false ) ); ?>
你需要告诉HtmlHelper :: link不要HTML转义输入.
这很好 documented in the manual.
原文链接:https://www.f2er.com/php/131897.html这很好 documented in the manual.