我正在使用 Zend/Form 向我的页面添加表单。
我通过如下定义来添加元素:
$this->add(array(
'name' => 'value',
'attributes' => array(
'type' => 'text',
'id' => 'value',
'autocomplete' => 'off',
'placeholder' => 'Cost',
),
'options' => array(
'label' => 'Cost',
),
));
如您所见,有一个 'label' => 'cost' 节点,这会生成一个与输入元素一起使用的标签。
如何向此标签添加类、属性?