{{ 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="#"><img src="http://localhost/img/logo.png" alt="logo"></a>"总结
以上是内存溢出为你收集整理的使用HTML Helper创建图像链接全部内容,希望文章能够帮你解决使用HTML Helper创建图像链接所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)