如何在 ZF2 表单元素上设置自动对焦?

How do you set autofocus on a ZF2 form element?

如何在 ZF2 表单元素上设置自动对焦属性?

我想我们可以在工厂数组中使用 setter 方法或选项。

在构造方法中添加元素时,可以使用

'autofocus'=>'true'

在该元素的属性中。在这里,我粘贴了我的 "email" 元素的代码:

$this->add(array(
        'name' => 'email', 
        'type' => 'Zend\Form\Element\Email',
        'options' => array(
            'label' => 'Email:'
            ),
        'attributes' => array(
            'type' => 'email', 
            'required' => true, 
            'placeholder' => 'myaccount@domain.com', 
            'class' => 'form-control',
            'tabindex' =>'1',
            'id'=>'email',
            'autofocus'=>'true'
            )
        ));