CakePHP: 如何在$html->link中使用自定义样式

在CakePHP的HtmlHelper的作用是使HTML相关的选项更容易,更快,更灵活。

 

如果你想用HtmlHelper实现自定义样式,如下效果:

<a class="active" href="/credits">Credits</a>

 

可以使用如下语句:

<?php echo $this->Html->link(__('Credits', true), array('plugin' => null, 'controller' => 'credits', 'action' => 'index'), array('class'=>'active')); ?>

 

再给一个更加复杂的例子:

<a class="active" href="/credits"><span class="icon_delete">Credits</a>

 

语句:

<?php echo $this->Html->link('<span class="icon_delete"></span>'.__('Credits', true), array('plugin' => null, 'controller' => 'credits', 'action' => 'index'), array('escape'=>'false')); ?>

 

你可能感兴趣的:(html,null,Class,action,cakephp)