我想使用带有图像类型的表单提交按钮。这在 Zend Framework 2 中怎么可能?
我有正常提交按钮的代码:
$this->add(array(
'name' => 'send',
'type' => 'Zend\Form\Element\Submit',
'attributes' => array(
'type' => 'submit',
'value' => 'Send',
),
));
我尝试将类型更改为“Zend\Form\Element\Image”或将类型设置为“图像”,但它不起作用。