使用HTML Helper创建图像链接

使用HTML Helper创建图像链接,第1张

概述我正在尝试使用Laravel 4的 HTML帮助程序创建一个图像链接.但它似乎并没有真正起作用.我有这行代码 {{ HTML::link("#", HTML::image("img/logo.png", "Logo") ) }} 但这只是输出这样的strin: <img src="http://localhost/worker/public/img/logo" alt="Logo"> 怎么会.?? 我正在尝试使用Laravel 4的 HTML帮助程序创建一个图像链接.但它似乎并没有真正起作用.我有这行代码
{{ HTML::link("#",HTML::image("img/logo.png","logo") ) }}

但这只是输出这样的strin:

<img src="http://localhost/worker/public/img/logo" alt="logo">

怎么会.??

解决方法 你可能需要:
<a href="#">{{ HTML::image("img/logo.png","logo") }}</a>

因为,link()使用实体来转义标题:

public function link($url,$Title = null,$attributes = array(),$secure = null){    $url = $this->url->to($url,array(),$secure);    if (is_null($Title) or $Title === false) $Title = $url;    return '<a href="'.$url.'"'.$this->attributes($attributes).'>'.$this->entitIEs($Title).'</a>';}

生成此源代码:

"<a href="#">&lt;img src=&quot;http://localhost/img/logo.png&quot; alt=&quot;logo&quot;&gt;</a>"
总结

以上是内存溢出为你收集整理的使用HTML Helper创建图像链接全部内容,希望文章能够帮你解决使用HTML Helper创建图像链接所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1134301.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存