Zf2形式文本元素水印命中

时间:2013-11-17 23:53:43

标签: php forms zend-framework2

 $this->add(array(
            'name' => 'size',
            'attributes' => array(
                'type'  => 'text',
            ),
            'options' => array(
                'label' => 'Size',
            ),
        ));

如何获取此表单元素的水印提示?

1 个答案:

答案 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]'
        )
    ));