Zend框架2单选按钮

时间:2013-10-21 09:54:24

标签: php html5 css3 zend-framework2

有没有办法将图像放入单选按钮。如下例所示。

http://jsbin.com/awelaw/1/edit

我正在尝试使用Zend表单来实现这一点。到目前为止,我还没有实现这一目标。以下是我的代码:

    $this->add(array(
        'type'  => 'Zend\Form\Element\Radio',
        'name'  => 'radio',

        'attributes' => array(
            'class'=>'pay',
         ),

        'options' => array(
            'value_options' => array(
                'Visa' => array(
                'value' => 'Visa',
                'attributes' => array(
                   'id'=>'visa',
                   'class'=>'pay',
                ),
                'options' => array(
                    'img'   => 'src="../img/visa_debit.gif"',
                            ),
                    ),

             ),
        ),
    ));

非常感谢

1 个答案:

答案 0 :(得分:0)

如果您需要自定义HTML,则需要手动呈现复选框。有关详细信息,请参阅this part of the official Documentation