2

是否可以使用 li 标签创建链接包装?我正在使用 cakephp2

$this->Html->link(
                 __('title'),array('controller' => 'controller', 'action' => 'index', 'admin' => false)
                , array('class' => "", 'id' => "")
              );
4

2 回答 2

3
<li>
<?php 
echo $this->Html->link(
    __('title'),
    array(
        'controller' => 'controller',
        'action' => 'index', 
        'admin' => false
    ),
    array('class' => "", 'id' => "")
);
?>
</li>

不要让事情变得比他们需要的更混乱。

或者如果你真的必须使用 Cake 使用HtmlHelper::tag

$this->Html->tag('li', $this->Html->link(..)); // <li><a href="..">..</a></li>
于 2013-07-12T13:35:46.937 回答
0

首先,您发布的不是输入框,而是链接。
我假设您正在尝试将 Input 包装在 li 标签内。

CakePHP Book 中的快速搜索导致了这种方法:

(对于 cakePHP 2.0 或更高版本)

echo $this->Form->input('field', array(
    'before' => '--before--',
    'after' => '--after--',
    'between' => '--between---'
));

此代码导致以下 Html

<div class="input">
--before--
<label for="UserField">Field</label>
--between---
<input name="data[User][field]" type="text" value="" id="UserField" />
--after--
</div>

我认为这正是您想要的。

将来在任何地方发布问题之前,您应该首先查看CakePHP 书籍

于 2013-07-12T11:30:50.833 回答