以下代码:
$this->addElement('text', 'email', array(
'label' => 'Your email address:',
));
$this->addElement('submit', 'submit', array(
'label' => 'Sign Guestbook',
));
生成以下HTML:
<form enctype="application/x-www-form-urlencoded" action="" method="post">
<dl class="zend_form">
<dt id="email-label">
<label for="email" class="optional">Your email address:</label>
</dt>
<dd id="email-element">
<input type="text" name="email" id="email" value="" />
</dd>
<dt id="submit-label">
 
</dt>
<dd id="submit-element">
<input type="submit" name="submit" id="submit" value="Sign Guestbook" />
</dd>
</dl>
</form>
我知道,我可以编写自己的装饰器,但我想知道如何使用现有装饰器来创建以下HTML:
<form enctype="application/x-www-form-urlencoded" action="" method="post">
<div>
<label for="email" class="optional">Your email address:</label>
<input type="text" name="email" id="email" value="" class="my_class" />
</div>
<div>
<input type="submit" name="submit" id="submit" value="Sign Guestbook" class="my_class" />
</div>
</form>
否<dl/>
,<dt/>
,<dd/>
,添加了class
属性。
例如,我知道如何移除周围的<dl/>
标记:
$this->addDecorator('FormElements')
->addDecorator('Form');
其他更改是否可能没有编写自定义装饰器?
答案 0 :(得分:1)
您可以使用HtmlTag装饰器并传递哪个标记用作参数。
此处列出了所有可用的装饰器:http://framework.zend.com/manual/en/zend.form.standardDecorators.html
答案 1 :(得分:1)
这个(将此数组附加到您的参数数组,现在只包含一个标签选项)应该有助于您的电子邮件字段:
'class' => 'my_class',
'decorators' => array(
'ViewHelper',
'Errors',
'Label',
array('HtmlTag', array('tag' => 'div'))
)
同样没有Label
- 提交。