如何在cakephp 3的链接中使用带有内联css的span

时间:2016-07-11 05:58:41

标签: cakephp

我是cakephp的新手,在我的布局中我想使用这段代码......

<a href="#">Home<span style="font-size:16px;" class="pull-right hidden-xs"></span></a>

如何使用Html帮助程序重写它? 例如像这样的代码: echo $this->Html->link('Home',['controller'=>'users','action'=>'home']);而不是。

1 个答案:

答案 0 :(得分:1)

在链接中添加&#39; escape&#39; =&gt; false选项会使其无法翻译(&#39;转义&#39;)所有html字符。

echo $this->Html->link(
        $this->Html->tag('span', 'Home', array(
            'class' => 'pull-right hidden-xs',
            'style' => 'font-size:16px;'
                )
        )
        , '#'
        , array(
    'escape' => false // Notice Here
        )
);