ZF2为元素添加样式

时间:2014-09-29 21:55:57

标签: zend-framework2 zend-form

您有没有办法在表单元素中添加样式,除了添加类?

    $this->add(array(
        'type' => 'Zend\Form\Element\Textarea',
        'name' => 'notas',
        'options' => array(
            'label' => 'Notas',
            'label_attributes' => array(
                'class'  => 'label-wrapped'
            ),
        ),
    ));

谢谢!

1 个答案:

答案 0 :(得分:1)

这是方法,但我仍然不知道如何添加几种样式

$this->add(array(
    'type' => 'Zend\Form\Element\Textarea',
    'name' => 'notas',
    'attributes' => array(
        'style'=>'width:100px',
    ),
    'options' => array(
        'label' => 'Notas',
        'label_attributes' => array(
            'class'  => 'label-wrapped'
        ),
    ),
));