CHtml::link() 及其内部内容
有没有办法借助 Yii 的 CHTML::link() 方法来生成 HTML 输出?
<a href="localhost/somecontroller/someaction" class="foo"><i class="bar"></i>My awesome link</a>
我需要在锚标记中使用一些嵌套标记,但无法弄清楚如何将其放入 . CHTML:link() 并不优于其他方法。如果你知道如何通过 CMenu 来实现它,那也会很精彩。
Is there any way to produce this HTML output with help of Yii's CHTML::link() method?
<a href="localhost/somecontroller/someaction" class="foo"><i class="bar"></i>My awesome link</a>
I require some nested tag in the anchor tag and can't figure out, how do I put into . CHTML:link() isn't preferred over other methods. If you know, how to implement that by means of CMenu, it'll be also gorgeous.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许你可以尝试一下这个。
'bar'), '我很棒的链接'), array('somecontroller/someaction') , array('class'=>'foo')); ?>
May be you can try this one.
<?php echo CHtml::link(CHtml::tag('i', array('class'=>'bar'), 'My awesome link'), array('somecontroller/someaction'), array('class'=>'foo')); ?>
好吧,我只找到了一种解决方案。它转义了 link 方法的第一个参数中的“'”字符。我知道,这很丑陋,但我可以应付。
Okay, I found only one solution. It is escaping the «'» character in the first parameter of link method. I know, it is so ugly, but I can deal with it.