gpt4 book ai didi

zend-framework2 - 在 Zf2 中使用 formRow View 助手输入前显示标签

转载 作者:行者123 更新时间:2023-12-04 08:26:45 24 4
gpt4 key购买 nike

在 Zend Framework 2.1.4 中,我使用标准的表单 View 助手来呈现我的表单元素。

当我尝试:

<?php echo $this->formRow($form->get('Title'));?>

标签文本和输入元素放置在标签内:
<label>
<span>Title</span><input type="text" name="Title" placeholder="Inserisci titolo"
required="required" value="">
</label>

与以下相同:
<?php echo $this->formCollection($form, TRUE);

但是,如果我单独渲染标签和输入:
echo $this->formLabel($form->get('Title'));
echo $this->formInput($form->get('Title'));

它生成我想要的 html:
<label for="Title">Title</label>
<input type="text" name="Title" placeholder="Insert Title" required="required" value="">

如何使用 formRow View 助手实现相同的效果?

最佳答案

如果表单元素没有“id”属性,标签将包装输入:

<label>Label<input /></label>

除此以外:
<label for="test">Label</label><input id="test" />

关于zend-framework2 - 在 Zf2 中使用 formRow View 助手输入前显示标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15947005/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com