Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在使用 CakePHP 创建的应用程序中的 Web 表单上,我需要显示字段注释,而不是作为标签的列名(在输入文本字段旁边)。
你能告诉我实现这一目标的最佳方法是什么吗?
您可以使用以下代码:
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>