0

在使用 CakePHP 创建的应用程序中的 Web 表单上,我需要显示字段注释,而不是作为标签的列名(在输入文本字段旁边)。

你能告诉我实现这一目标的最佳方法是什么吗?

4

1 回答 1

1

您可以使用以下代码:

echo $this->Form->input('field', array(
    'before' => 'Description of the field',
    'label' => false
));

它会输出:

<div class="input">
Description of the field
<input name="data[Model][field]" type="text" value="" id="ModelField" />
</div>
于 2013-05-01T21:36:39.127 回答