CHtml::link() 及其内部内容

发布于 2024-10-11 06:53:19 字数 287 浏览 5 评论 0原文

有没有办法借助 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情话墙 2024-10-18 06:53:19

也许你可以尝试一下这个。

'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')); ?>

掩饰不了的爱 2024-10-18 06:53:19

好吧,我只找到了一种解决方案。它转义了 link 方法的第一个参数中的“'”字符。我知道,这很丑陋,但我可以应付。

<?php echo CHtml::link('<i class=\'icon s\'></i>Foo',array('/site/index'), array('class'=>'hover')); ?>

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.

<?php echo CHtml::link('<i class=\'icon s\'></i>Foo',array('/site/index'), array('class'=>'hover')); ?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文