$this->add(array(
'name' => 'size',
'attributes' => array(
'type' => 'text',
),
'options' => array(
'label' => 'Size',
),
));
如何获取此表单元素的水印提示?
答案 0 :(得分:0)
如果水印提示对您来说意味着HTML5占位符,请执行以下操作:
$this->add(array(
'type' => 'Zend\Form\Element\Text',
'name' => 'name',
'attributes' => array(
'placeholder' => 'Name'
),
'options' => array(
'label' => 'Name',
'description' => 'Type a name [optional]'
)
));